Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Scanning memo fields
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00529480
Message ID:
00529494
Views:
12
>Is there an easy way to scan the contents of a memo field, similar to "DO WHILE NOT FEOF()", without copying the contents to a temporary file?

You can use ALINES() function. See help for details.
LOCAL lnLines, laLines[1], lnI
lnLines = ALINES(laLines, Mytable.Mymemo)
FOR lnI=1 TO lnLines
    * Do processing here
ENDFOR
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform