
Combobox click/selectedindex problems
Quote:
> this .NET language?
Sorry... this group's for VB6 and under. All .Net groups have "dotnet" in their names
--
Ken Halter - MS-MVP-VB - http://www.vbsight.com
Please keep it in the groups..
Quote:
> When a combobox is used as the Click event, it no
> longer works properly (as it does in eVB). It responds
> as soon as you click on the drop arrow or the text
> window. Formerly, after the 1st click to drop down the
> list, you had to click on one of the combo list items
> before the Click event responded. Of course you're
> saying, use the SelectedIndexChanged event - but that is
> where the problem is. One has to be able to initialize a
> combobox at various times during a program and NOT have
> it respond with the associated event code.
> I am using Combobox1.SelectedIndex = indexvariable to
> initialize or set a combobox via code prior to the
> operator being able to access the combobox. But this
> causes the code in the Combobox1.SelectedIndexChanged (.)
> sub to execute - this is not acceptable and causes major
> problems in the program!
> This methodology worked fine in eVB, and is standard
> programming practice. So what do we have to do now in
> this .NET language?