Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How do you return more than one thing from combobox?
Message
 
À
22/03/2001 17:32:43
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00487803
Message ID:
00487845
Vues:
9
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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform