Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Error in form
Message
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Miscellaneous
Thread ID:
00691324
Message ID:
00691337
Views:
17
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform