PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → Hex Conversion
Hex Conversion
Iniciado por derek.theobald, 01,sep. 2003 06:09 - 1 respuesta
Publicado el 01,septiembre 2003 - 06:09
Hi
How do I convert a Decimal(base10) to Hexidecimal(base16) and reverse?
Tried all the keywords I can think of in the help without success
Regards
DT
Publicado el 01,septiembre 2003 - 06:51
Hello,
Decimal to Hexa :
hex = NumToString(dec, "x")
Hexa to decimal
dec = Val(hex, 16)
Regards,
Michel Fages
Hi
How do I convert a Decimal(base10) to Hexidecimal(base16) and reverse?
Tried all the keywords I can think of in the help without success
Regards
DT