ListBox/ComboBox change event

JaedenRuiner

Registered User.
Local time
Today, 11:35
Joined
Jun 22, 2005
Messages
154
is there any even for the ListBox/ComboBox that will ALWAYS trigger when the value changes. whether that change is programmatic or user.
basically, If I click on an entry i know the onclick() event triggers and the After_Update event triggers.

but if in my code i do a search for a value in the list, and then "set" the value property to something nothing happens. what event is triggered by the line:

ListBox1.Value = SomeValue

Thanks
Jaeden "Sifo Dyas" al"Raec Ruiner
 
Nothing is triggered by that but you can call the After Update event explicitly:

Code:
ListBox1.Value = SomeValue
Call ListBox1_AfterUpdate

or

Code:
ListBox1.Value = SomeValue
Me.ListBox1.AfterUpdate
 

Users who are viewing this thread

Back
Top Bottom