Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How do you return more than one thing from combobox?
Message
 
To
22/03/2001 17:32:43
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00487803
Message ID:
00487845
Views:
7
Sandi,

This code populates an array with all the items on the row


FUNCTION GetSelectedInfo
LPARAMETERS aInfo

* Note - The aInfo array must be passed by reference

 LOCAL nColumn

 WITH This
  FOR nColumn = 1 TO .ColumnCount
   DIMENSION aInfo[nColumn]
   aInfo[nColumn] = .List(.ListIndex, nColumn)
  ENDFOR
 ENDWITH


Hope this helps
Everything makes sense in someone's mind
public class SystemCrasher :ICrashable
In addition, an integer field is not for irrational people
Previous
Reply
Map
View

Click here to load this message in the networking platform