Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Invalid subscript error
Message
De
29/09/1999 10:22:39
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Invalid subscript error
Divers
Thread ID:
00270497
Message ID:
00270497
Vues:
53
Hello:

I'm trying to load an array into my grid and am getting invalid subsript.
I add a record, save and then do this statmenet to load into my grid.

My select statement is :

select gidetail.sin, client.surname,client.firstname, client.phone1;
from gidetail, client;
where gidetail.sin = client.sin;
and gisum.sessionkey = gidetail.sessionkey;
into array aclient

in the control source of my grid for column2 of the grid(surname) I have :
iif(empty(gidetail.sin), "",surdesc("Aclient", gidetail.sin))

my function surdesc is as follows:

Function surdesc
Parameters arrname, cd
tmpnum = Ascan((arrname), cd)
if empty(tmpnum)
return " "
else
return &arrname(round(tmp/4,0),2)
endif

I've set up my arrays as : public array aclient(1,4)

Shouldn't this just redimension itself when it loads from the
select statement. I can't understand why I'm getting this error.
Any input would be appreciated.
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform