[progress Communities] [progress Openedge Abl] Forum Post: Re: Integer To Hex

  • Thread starter Thread starter tbergman
  • Start date Start date
Status
Not open for further replies.
T

tbergman

Guest
If you're on Windows .Net makes it easy. METHOD PUBLIC CHARACTER IntToHex (INPUT vInt AS Int64): Return System.Convert:ToString(vInt, 16). END METHOD. and the other way METHOD PUBLIC INT64 HexToINT (INPUT pHex AS CHARACTER): RETURN System.Convert:ToInt64(pHex, 16). END METHOD.

Continue reading...
 
Status
Not open for further replies.
Back
Top