Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Show Array Col 1 + 14 in listbox
Message
From
07/01/2005 16:17:03
 
 
To
07/01/2005 16:10:39
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 6 SP5
OS:
Windows XP SP2
Network:
Windows NT
Database:
Visual FoxPro
Miscellaneous
Thread ID:
00975258
Message ID:
00975259
Views:
17
>Hello Everybody.
>
>Must be friday - or i am missing something.
>
>how can i show in a vfp listbox array column 1 and column 14.
>
>because the listbox is greatly referenced in my app i can not change it from an array to a table or rearange the array columns.
>
>thanks for all your help.

Something like that?
FOR asd = 1 TO ALEN(MyArray,1)
    thisform.ListBox1.AddItem(" ")
    thisform.ListBox1.AddListItem(MyArray[asd,1] ,1)
    thisform.ListBox1.AddListItem(MyArray[asd,14],2)
ENDFOR
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform