I have a list of textboxs that are binded to a database.
When a user starts to type in one of these textboxs I draw a listbox right under that textbox that shows a list of other items in the field that start with the same keys.
IE, the user types in "Ni" and the list box will have "Nick" and "Nicholas" and so on...
That all works great but when I hit tab I want the next textbox to get focus and the listbox to hide.
If I just wait for the textbox to lose focus you can't do anything with the listbox because DOH the textbox just lost focus and the lsitbox hides.
This has led me in a circle of I'll try this and I'll try that for a while now.
I have listbox.tabstop set to false.
I've tried to manually set focus to the next textbox but the problem is that the listbox gets the focus that instant and all the gotfocus lostfocus code for the textbox is ignored.
I can't out right ignore the listbox getting focus.
What is the recommendation of the vbdotnotforums community?
Thanks for any advice!
Nick
When a user starts to type in one of these textboxs I draw a listbox right under that textbox that shows a list of other items in the field that start with the same keys.
IE, the user types in "Ni" and the list box will have "Nick" and "Nicholas" and so on...
That all works great but when I hit tab I want the next textbox to get focus and the listbox to hide.
If I just wait for the textbox to lose focus you can't do anything with the listbox because DOH the textbox just lost focus and the lsitbox hides.
This has led me in a circle of I'll try this and I'll try that for a while now.
I have listbox.tabstop set to false.
I've tried to manually set focus to the next textbox but the problem is that the listbox gets the focus that instant and all the gotfocus lostfocus code for the textbox is ignored.
I can't out right ignore the listbox getting focus.
What is the recommendation of the vbdotnotforums community?
Thanks for any advice!
Nick