Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Parsing a memo
Message
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Divers
Thread ID:
00798566
Message ID:
00798571
Vues:
18
>Just realized that although my application has many memo fields, that I have never done anything with them programmatically. Now I want to get my memo into a string so that I can parse out bits of it. How the heck do I accomplish that?
>
>Thanks

Brenda,

You can assign memofiled to a variable as any other data type. You can use ALINES() function to split it into lines and put them into array. There're other techniques to work with memo fields but you've provide more info about what kind of processing you want to do.
lcStr = mytable.mymemofiled
...
DIMENSION laLines[1]
ALINES(laLines, mytable.mymemofiled)
--sb--
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform