PDA

Click to See Complete Forum and Search --> : another one


netSurfer
Jan 25th, 2000, 03:53 AM
for that matter, why doesn't the Combo1_changed event fire when I select a different item in the list? AARRRRGGGGHHH!!! I'm gonna go home and sleep.. this sucks.

Aaron Young
Jan 25th, 2000, 04:01 AM
The Comboboxes Change Event if for Monitoring Changes in the TextEntry Area, to Execute Code after a Selection Change, use the Click Event.

------------------
Aaron Young
Analyst Programmer
aarony@redwingsoftware.com
ajyoung@pressenter.com

MartinLiss
Jan 25th, 2000, 04:02 AM
The flip answer is that "it's not supposed to", but here is what MSDN help has to say about the Change event
=============================
[The change event occurs when a user] changes the text in the text box portion of the control. Occurs only if the Style property is set to 0 (Dropdown Combo) or 1 (Simple Combo) and the user changes the text or you change the Text property setting through code.
==============================
You probably know this, but it's the Click event that fires when you select a different item in the list.


------------------
Marty
Why is it called lipstick if you can still move your lips?

netSurfer
Jan 25th, 2000, 08:15 PM
Ok, thanks guys.