NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HxLink DID NOT INITIALIZE

/removefpchecks (Remove Floating-Point Error Checks)

Turns on or off the error checking for floating-point operations.

/removefpchecks [+| -]

Remarks

The default for this option is /removefpchecks-, which causes the compiler to check all floating point calculations for errors such as overflow or division by zero.

Specifying /removefpchecks or /removefpchecks+ prevents error checking and can make floating-point calculations faster. However, without error checking, incorrect results may be stored without raising an error if data type capacities are overflowed.

Example

Compile test.vb and turn off floating-point error checking:

vbc /removefpchecks+ test.vb 

See Also

Visual Basic Compiler Options | /removeintchecks