Kbase P137055: How to convert a Hexadecimal value to Integer using ABL
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  07/11/2008 |
|
Status: Unverified
GOAL:
How to convert a Hexadecimal value to Integer using ABL
FACT(s) (Environment):
All Supported Operating Systems
OpenEdge 10.x
FIX:
OpenEdge Release 10.0A introduced the ability to directly convert a Hex value to Integer.
e.g.
DEFINE VARIABLE i AS INTEGER NO-UNDO.
i = 0x00FF00.
MESSAGE i VIEW-AS ALERT-BOX INFO BUTTONS OK.