Anyone know how to open a dropdownlist automatically upon receiving focus? I tried using the following code options I found in a Google search...
Code:
Private Sub MethodInspect_GotFocus()
MethodInspect.Dropdown
End Sub
Private Sub MethodInspect_GotFocus()
Me.MethodInspect.Dropdown
End Sub
Private Sub MethodInspect_GotFocus()
SendKeys "%{Down}"
End Sub
...but nothing happens.
("MethodInspect" is the Title of the dropdownlist)
Any help would be appreciated. 