• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

VB and combo boxes

Theslowone

Golden Member
I just started with vb and I can't figure out something.

I have a combo box with the 12 months in it, in order, but with the field left blank at for if the person was to choose to they could type in what month they needed.

I have the box set up the way I want but i don't know how to code it where it takes everything say january, Jan, jan, JAN, Janu, etc. I guess to make it where it would see all of it as basically the same thing.

Thanks for any help.

EDIT: I got it
 
Set the Style property of the Combobox to 2. The the behavior will be that the the first time J is pressed it will go to January. Press J again then it will go to June, etc. If you want a Combobox where you type J, then U to get to June, there is no easy way to do it. However, if you search on the web you can find sample code that does it.

HTH
 
Back
Top