|
-
Apr 16th, 2001, 01:41 AM
#1
Thread Starter
Lively Member
How do you catch a change in the selection of the Combo Box? I'm not talking about Sub ComboBox1_Change.
Thank you.
-
Apr 16th, 2001, 01:48 AM
#2
Addicted Member
what change are you talking about then?
-
Apr 16th, 2001, 02:30 AM
#3
Well ...
The combo box has two events to trap any change in its Text property.
If you have set the combo box style to anything other than List, you can use the Change() event to trap any user input into the combo box. This event is useless in case you have set the combo style to dropdown list.
For any style of the combo box, you can use the Click event to trap a change in the selection of the combo item. For e.g. if a combo displays the first item in its list, and the user clicks the button to drop it down and then selects the fifth item, the Click event will let you know that the user has changed the selection.
.
-
Apr 16th, 2001, 02:31 AM
#4
r u talking about a text change, because its then
sub Combo1_keypress
use this to check if any text changed since last change
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|