Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Arrays and variable ...???
Message
 
À
20/08/1998 10:36:48
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00128485
Message ID:
00128551
Vues:
20
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform