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:
00691337
Vues:
16
This message has been marked as the solution to the initial question of the thread.
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

Armin Neudert
Regional Director (Stuttgart) of German FoxPro User Group dFPUG

MCP for Visual FoxPro

Expert/Editor of the VFP section in the German Codezone community portal
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform