Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to pass an array and return array from a form
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00759681
Message ID:
00759805
Vues:
16
Just create an object which can contain any kind or kinds of data.
lo=create('relation')
lo.addproperty('aArray(1)')
do form test with lo
for i = 1 to alen(lo.aArray,1)
  xxx= lo.aArray(i)
endfor
Form::init
lparameters toObj
if vartype(toObj) = 'O'
  this.oPassback = toObj
endif
Glenn

>How would I pass an array to a form and then return the array to the calling form?
>I would prefer to not use a variable that would be available after the calling form is released.
>
>TIA.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform