combo box drop down

  • Thread starter Thread starter alan
  • Start date Start date
A

alan

How do I get the second combo box to expand once the user
makes a selection on the first one? Thanks
 
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
 
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.
 
Hi Stephen,

You are absolutely wright. Please don't ban me. ;-)

Frans
 

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

Back
Top