I'm creating a program for birthday notification and also editor to add celebrants into "database". Editor works with 3 comboboxes - one for day, month and year.
Current situation is that user can use numeric keyboard to set day and year, but in case of month he must write name of the month or select one item from the roll menu with mouse.
An ideal situation would be that user could use only tab (that is solved by TabIndex) and numeric keyboard - suggestion behind month combobox would be based on two (somehow connected) lists - months names (Jan, Feb, ...) AND months numbers (1, 2, ...) - while the only one (the named) would be visible - so that user would have an opportunity to write either "j" or "1" to select "January" item. Is that possible?
My current Combobox settings are:
- AutoCompleteMode: SuggestAppend
- AutoCompleteSource: ListItems
- DropDownStyle: DropDownList
- Items: Names of months (January - December)
Thanks in advance for any advice.