![]() |
|
|||||||
| Home | Register | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
| Questions & Help Needed Post any question regarding Basic4ppc. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
||||
|
I think that you would be better placing a label over the ComboBox that mirrors the ComboBox value.
Regards, RandomCoder
__________________
Desktop: Pentium D 920 (2.8GHz, 4MB L2 Cache, 800MHz FSB), 1024MB, 256MB Radeon X600, 250GB HD. Device : Axim X51v XScale 624MHz, 3.7" VGA, 64MB SDRAM, 256MB Flash ROM + 1Gb SD. "Defeat never comes to any man until he admits it."Josephus Daniels |
|
|||
|
I think I didnot express myself clear enough.
I want to: 1. let the user choose from the items in the combobox 2. NOT let him change any values in the box 3. get rid of the blue colour in the box when an item is chosen I cannot disable the box or put a label over it because then I cannot choose an item. marc |
|
||||
|
As far as I can see:
1. That's what a combobox is designed for... => solved 2. If you run your application on a device, the entries can NOT be edited => solved 3. The selected entry is hilited as long as the focus remains to the combobox control. My (simple) suggestion: Move the actual focus to any other control within the selction_changed event: Code:
Sub ComboBox1_SelectionChanged (Index, Value)
' any control except the combobox will do
button1.Focus
End Sub
specci48 |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Listbox and enter key | tsteward | Questions & Help Needed | 2 | 10-14-2008 07:30 AM |
| Seleccionar Items Listbox | jorge perez sabio | Spanish Forum | 2 | 03-25-2008 12:50 PM |
| Lookup Contacts using a listbox | thartung | Questions & Help Needed | 9 | 02-27-2008 10:16 AM |
| Listbox difficulties. | dan kabestan | Questions & Help Needed | 2 | 12-15-2007 07:24 PM |
| listbox = arraylist ? | sloopa | Questions & Help Needed | 1 | 05-07-2007 01:38 PM |