Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Is it possible to pass a memo field as parameter?
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00214528
Message ID:
00214530
Vues:
21
Eric,

You can't exactly pass the field as a parameter. You can pass a memory variable that contains the contents of the memo field:
m.MemoField=myalias.MemoField
DO MyProg WITH m.MemoField
You could also pass a reference to the memo field and have the called program access the field that way:
DO MyProg WITH 'myalias.MemoField'

PROCEDURE MyProg
LPARAMETERS lcMemo

?EVAL('m.lcMemo')
>?
>
>THanks
>eric.
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform