combo box drop down

A

alan

How do I get the second combo box to expand once the user
makes a selection on the first one? Thanks
 
F

Frans van Zelm

Dear Alan,

I will be banned from the group for this, but it works:

Private Sub cboFirstCombobox()
Me.cboSecondCombobox.SetFocus
SendKeys "%{Down}"
End Sub

Mvg, Frans
 
S

Stephen Lebans

Why would you advocate using SendKeys when the Combo control exposes a
DropDown method?

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top