ComboBox/Page Down Question

B

Bob V

Why is it when you open your combobox drop down list and click pagedown it
nevers works unless you select the combox box drop down list the second
time, I also have a control to open my cmbCharge1Y and that does the
same...........Any Help Please........Bob
Private Sub cmdCharge1Y_Click()
Me.cmbCharge1Y.Requery
Me.cmbCharge1Y.SetFocus
Me.cmbCharge1Y.Dropdown
End Sub
 
P

pietlinden

Why is it when you open your combobox drop down list and click pagedown it
nevers works unless you select the combox box drop down list the second
time, I also have a control to open my cmbCharge1Y and that does the
same...........Any Help Please........Bob
Private Sub cmdCharge1Y_Click()
Me.cmbCharge1Y.Requery
Me.cmbCharge1Y.SetFocus
Me.cmbCharge1Y.Dropdown
End Sub

never done that before. What's wrong with typing in a few letters in
to the Combobox and using that to scroll down to where you want.... Is
there some reason that won't work? or just set the control source of
the combobox after you enter a few letters into it....
 
Top