Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Error in form
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Titre:
Divers
Thread ID:
00691324
Message ID:
00691339
Vues:
13
Hi Armin,

Declaring the array worked. I'm curious.. since it does not HAVE to be declared, and works fine at runtime, why would the compiler complain at build time? By the way, yes, the line you mentioned does work (there are 2 columns in the array).

Thanks for your help, I've had that error nag me for a month!


>Hi,
>
>here are some comments:
>
>
>   *-- Is the array declared? You don't have to, but it's always a good idea.
>   LOCAL ARRAY aEmployees[1]
>   *--
>
>   select SEMPCODE,SNAME from EMPINFO where &cFilter into array aEmployees
>   with ThisForm.lstEmployees
>        .Clear
>
>        if type('aEmployees')='U'
>           wait 'No Employees found matching the selection criteria';
>                window timeout 5
>           return
>        endif
>
>        *-- Did this line really work?
>        *-- nTotalItems=(alen('aEmployees')/2)
>        nTotalItems = alen(aEmployees,1)
>
>        for x = 1 to nTotalItems
>            .AddItem((aEmployees(x,1)),x,1)   && Either of these
>            .ListItem(x,2)=(aEmployees(x,2))  && two lines cause the error
>        next
>        .Value=.List(1)
>        .Refresh
>   endwith
>
>
>HTH,
>Armin
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform