Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Converting 0x503B to decimal routine 1

Status
Not open for further replies.

beedubau

Programmer
Jan 7, 2003
97
AU
I have a long list of Hex values shown as eg 0x503B that I need to convert to decimal for a lookup table.

Is there a function or simple code to do this?

Regards

Bryan
 
I was surprised but Hex is internally supprted by FoxPro.
So:

aStr = "0x503B"
aDec = &aStr
?aDec
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top