Combobox events
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, i have a combobox (dropdown style not dropdownlist) and a i have to open a form when i click on the text, but not when i click on the arrow or when i select a item. how can i do? some one have any idea? thanks, cliffer
on comboBox1_SelectedIndexChanged event call form example:
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) { Form f = new Form(); f.Height = 150; f.Width = 150; f.Show(); }
_____________________ Proud to be Albanian _____________________