Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Help : Put Check Mark in Combo Box
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00234626
Message ID:
00234707
Vues:
30
>I want to put check mark in combobox item, when ever I click any item in combo box? Is it possible or not, If Yes, then olease let me know how can I do it?

Hello Ashish,

The Solutions Sample included with VFP describes placing a graphic into a listbox. If you were to use a graphic of a checkmark and an equally sized empty box graphic, you could use this same technique. This is the help example in VFP:

FOR i = (m.nTblCount+1) TO thisform.lstDatabase.ListCount
IF DBGETPROP(ALLTRIM(thisform.lstDatabase.List[m.i]),; "view","sourcetype") = 1
*Local view
thisform.lstDatabase.Picture[m.i] = m.cLViewBMP
ELSE
* Remote view
thisform.lstDatabase.Picture[m.i] = m.cRViewBMP
ENDIF
ENDFOR


Glenn
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform