Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
REPLACE FROM ARRAY Command
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00297964
Message ID:
00297985
Vues:
24
I just tested a two dimension array and it worked fine. The default scope of REPLACE is the next record. Have you done something to change that such as REPLACE ALL or REPLACE NEXT 10 or REPLACE ... FOR or WHILE. Since only the first element of the first "row" of the array (1,1) is populated (in your example) , if only the first record in the table is REPLACEd, it appears to be losing the additional "columns" of the array. My bet is that it's not the additional "columns" but all of the "rows" after the first one that aren't REPLACEd because you are in effect doing a REPLACE NEXT 1.

>I have a record with a FIELD
>savearray CHAR 36
>
>I have a 2-dimensional array that I want to save into the record FIELD
>I can have to up 36 "Y"s stored in my array based upon conditions.
>I set up the array in the Init of my Form.
>PUBLIC myarray
>DIMENSION myarray (6,6)
>
>I plug values into the array as follows:
>myarray (1,1) = "Y"
>myarray (2,4) = "Y"
>myarray (5,6) = "Y"
>and so on...
>
>But when I do the command -
>REPLACE FROM ARRAY myarray FIELDS savearray
>only the first Y gets saved into the record.
>I think it is the myarray(1,1) that gets saved. The others don't appear in the saved record.
>
>Can't the REPLACE FROM ARRAY command handle 2-dimensional arrays? Or what am I doing wrong? Help please. Thanks.
>
>Steve Kramer
>Kramer & Kramer Design
>
>p.s. - Happy Holidays!!!
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform