Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Parameter array
Message
 
 
To
09/11/2011 09:11:24
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Environment versions
Visual FoxPro:
VFP 5
OS:
Windows 7
Miscellaneous
Thread ID:
01528475
Message ID:
01528482
Views:
114
This message has been marked as the solution to the initial question of the thread.
No parameter array in VFP. The closest you can get
foo('one', 'two', 'three')

FUNCTION foo(luP1, luP2,luP3, luP4, luP5)
LOCAL lnPcount, lnI
lnPcount = PCOUNT()
LOCAL ARRAY laParam[lnPcount] 
FOR lnI=1 TO lnPcount
	laParam[lnI] = EVALUATE("luP" + TRANSFORM(lnI))
ENDFOR

FOR lnI=1 TO lnPcount
	? laParam[lnI]
ENDFOR


RETURN
>
>Is there a parameter array?
>
>
>foo('one', 'two', 'three')
>
>return
>
>Function foo(dog, cat, hen)
>
>? aPara(1)   &&displays 'one'
>? dog           &&displays 'one'
>? aPara(2)   &&displays 'two'
>? aPara(3)   &&displays 'three'
>
>
>return
>
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform