CHuge_ Function

Syntax:

CHuge_(Num|$)

Group: Conversion

Description:

Convert to a 64 bit signed integer (Huge_). If Num|$ is too big (or too small) to fit then an overflow error occurs.

Some versions of Windows do not support CHuge_.

VBA

This language element is not VBA compatible.

Parameters Description

Num|$  Convert a number or string value to a 64 bit signed integer.  

Sub Main
Debug.
Print CHuge_(2^32) ' 4294967296
End
Sub