How to Create A Click Event For Listbox?

Arunkumar

New Member
Thankyou for you support

What do you want to do with the Click event ?
I have two listbox one is country and another one is state. defaultly the state appear as blank when user click on the state listbox i want to popup a message please select country.

is it possible?

arunkumar
:sign0085:
 
Last edited:

specci48

Well-Known Member
Licensed User
Longtime User
Hello Arunkumar,

a good solution for your problem is to disable the state combobox until a valid country is selected.
This is a common way to prevent the user form doing things that are currently not possible...



specci48
 

Tex8503

Active Member
Licensed User
Longtime User
Just another idea - thinking outside the box abit.. - You could have a timer that checks the value of the listbox repeatedly and if the value is something other than null, then enable or poll results to populate the other list box.

Just a thought.
 
Top