ComboBox Question?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I have a combobox on a dataentry winform. Once a value is selected I can't
tab out of the control or change the focus to any other control. Can anyone
help me with this.

Any help would be greatly appreciated!
Thanks in advance.
 
No, we cannot help you with this, since there is something going on here
that you are not telling us.

A combobox on its own will never have this behavior.

There is something you are doing in code to cause this - but you did not
provide any details or relevant code, hence we can't help.
 
Not much to tell you except I fixed the problem by changing the form
property (Me.AutoValidate) to the value (Windows.Forms.AutoValidate.Disable).

Thanks for your help!
 
Well, it sounds like you had some validation set up that was saying the
value in the field was not valid - hence, the focus stayed in the field.

Like I said, a combox will not just do this on its own with no other code.
 
Back
Top