Public Sub cbodropdown([U][B][B]ctl As ComboBox[/B][/B][/U])
ctl.Dropdown
End Sub
Private Sub Form_Load()
Dim ctl As Control
For Each ctl In Me.Controls
If TypeOf ctl Is ComboBox Then
ctl.OnDblClick = "=cbodropdown[U][B](" & ctl.Name & ")"[/B][/U]
End If
Next ctl
Private Sub Form_Load()
Dim ctl As Control
For Each ctl In Me.Controls
If TypeOf ctl Is ComboBox Then
ctl.OnDblClick = "=cbodropdown(" & ctl.Name & ")"
End If
Next ctl