CUHuge_ Function
Syntax
CUHuge_(expr)
Group
Description
Convert to a 64 bit unsigned integer (UHuge_). If expr is too big (or too small) to fit then an overflow error occurs.
NOTE: Some versions of Windows do not support CUHuge_.
VBA
This language element is not VBA compatible and requires the #Language "WWB-COM" setting.
Parameters
Parameters | Description |
---|---|
expr | Convert a number or string value to a 64 bit unsigned integer. |
Sub Main Debug.Print CUHuge_(2^32) ' 4294967296 End Sub