Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Is it possible to pass a memo field as parameter?
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00214528
Message ID:
00214530
Views:
22
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.
Previous
Reply
Map
View

Click here to load this message in the networking platform