Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Arrays and variable ...???
Message
 
To
20/08/1998 10:36:48
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00128485
Message ID:
00128551
Views:
21
Mark,

This should work for you;
DIMENSION Array1(5)
Array1(1)='h'
Array1(2)='e'
Array1(3)='l'
Array1(4)='l'
Array1(5)='o'

? Proc1(@Array)

PROCEDURE Proc1
LPARAMETERS paArray
LOCAL lcResult, lnCnt
lcResult = ""
FOR lnCnt = 1 to ALEN(paArray, 1)
  lcResult = lcResult + paArray(lnCnt)
ENDFOR
RETURN lcResult
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform