User Tools

Site Tools


longtohex_convert_an_unsigned_long_to_hexadecimal_.htm
Navigation:  Advanced Topics > Clarion Language Utilities >====== LONGTOHEX (convert an unsigned LONG to Hexadecimal) ====== Previous pageReturn to chapter overviewNext page

LONGTOHEX( number, flag )

blk2blue.jpg

LONGTOHEX Convert a ULONG value to its Hexadecimal equivalent.
number A ULONG variable or constant
flag A BYTE used to designate a lower or upper case HEX symbol (A,B,C,D,E)

LONGTOHEX is used to convert a number to its Hexadecimal equivalent. If the flag variable is non-zero, any non-numeric Hexadecimal symbols are returned in lowercase. If zero (default), the non-numeric digits are returned in uppercase.

To add support for this utility to your existing applications, you need only include the CWUTIL.INC file in the Global Map section of your program:

INCLUDE('CWUTIL.INC'),ONCE

Return Data Type:     STRING

Example:

LONGTOHEX(32000000,0)    !returns 1E84800

LONGTOHEX(32000000,1)    !returns 1e84800

See Also:

BYTETOHEX

SHORTTOHEX

longtohex_convert_an_unsigned_long_to_hexadecimal_.htm.txt · Last modified: 2021/04/15 15:57 by 127.0.0.1