Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Passing property by reference.
Message
De
28/07/1998 18:14:03
 
 
À
28/07/1998 17:12:14
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00122119
Message ID:
00122132
Vues:
18
>I have setup a property on my form of type array. I want to pass this array to another program by reference. But there does not seem to be any way to do this.
>
>I have tried the following:
>
>cmdWorkOnArray(@thisform.MyArray)
>cmdWorkOnArray(@(thisform.MyArray))
>cmdWorkOnArray(thisform.@MyArray)
>cmdWorkOnArray(thisform.@(MyArray))
>
>Does anyone know the answer

(Warning! Untested code ahead!)

I couldn´t find nothing but

DIMENSION A_NEW_ARRAY(ALEN(THISFORM.MYARRAY))
=ACOPY(THISFORM.MYARRAY, A_NEW_ARRAY)
cmdWorkOnArray(@A_NEW_ARRAY)
=ACOPY(A_NEW_ARRAY, THISFORM.MYARRAY)

HTH!
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform