Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Help : Put Check Mark in Combo Box
Message
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00234626
Message ID:
00234707
Views:
29
>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
Previous
Reply
Map
View

Click here to load this message in the networking platform