Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem with drop-down options being visible

Status
Not open for further replies.

breezett93

Technical User
Jun 24, 2015
128
0
16
US
Hello,

I have a form with multiple drop-downs. The process is to start with the first, choose an option, and then move on to the second drop-down. This works just fine if the user clicks on the drop-down for the first, then clicks on an option, and then moves on.

However, because the focus is on the first drop down, efficient users will simply type the first couple letters to get to the item they want. Then they will tab to the next drop-down which shows up blank. It seems strange that the user actually has to click the option in the first drop-down for the second drop-down to show any choices.

Help on changing this would be great!
 
How are you limiting the dependent drop-downs? Are you using code to update the Row Source properties or some other solution?

Duane
Minnesota
Hook'D on Access
MS Access MVP 2001-2016
 
There is code in the After Update with cases for the different choices. That is updating the Row Source.

Here is an example:

Code:
Select Case [Group]
        Case "Option1"
            [TypeCombo].RowSource = "Select  [Descr], [Field1Id] from [Field1Tbl]"

Why would the combo box not recognize the text unless something was clicked on instead of typed in?
 
That is only part of the code. Try set a breakpoint in your Code so you can step through it.

Duane
Minnesota
Hook'D on Access
MS Access MVP 2001-2016
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top