Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Using FOPEN() and FREAD()
Message
 
To
02/06/1999 12:31:13
Ernie Veniegas
Micro System Solutions, Inc.
Calistoga, California, United States
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00225449
Message ID:
00225453
Views:
15
Ernie,

The header of a dbf is binary. What you see when you print the string is the ASCII cvharacter for each byte value. If you want the actual byte value you should;
* assume your data is in lcData
FOR lnCnt = 1 TO LEN(lcData)
   ??ASC(SUBSTR(lcData,lnCnt,1)) + " "
ENDFOR
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform