Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Comparing char to hex
Message
From
30/09/2005 13:11:37
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Network:
SAMBA Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01054856
Message ID:
01054959
Views:
17
>>>Is there any way I can do a comparison from char to hex?
>>>
>>>
>>>retval=FREAD(f,3)
>>>if retval=0x4A6F65
>>>  do something
>>>endif
>>>
>>
>>Since you're in VFP9, how about
>>
>>
>>retval=FREAD(f,3)
>>if retval=0h4A6F65
>>  do something
>>endif
>>
>>
>>Note the 0h instead of 0x.
>
>Beautiful!!!! Where in the help is that described?!?!?


Varbinary Data Type

unfortunately VFP have consumed 0x for the numbers
0xA=10
0hA==CHR(10)
Previous
Reply
Map
View

Click here to load this message in the networking platform