Hi Everybody,
A while ago I came across a function STR2HEX() ... I have no idea how I found this.
1. Where is this documented ... I can't find it under FWH or xHarbour.
2. Is there a similar function to convert Hex to Dec ?
Thanks,
Jeff
Conversions
- Jeff Barnes
- Posts: 912
- Joined: Sun Oct 09, 2005 1:05 pm
- Location: Ontario, Canada
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
code sample:
Code: Select all
MsgInfo( Str2Hex( "Hello" ) )
MsgInfo( Hex2Str( Str2Hex( "Hello" ) ) )