I have some code that refuses to dropdown a combo when returning from a messagebox. I have tried moving focus away from the control to a textbox that onfocus tries to drop the combo but nothing works? Any ideas, thanks
Private Sub Combo1_Click()
If MsgBox("You selected " & Me.Combo1.Value & " is this correct?", vbYesNo) = vbYes Then
Else
Me.Combo1 = Null
Me.Combo1.SetFocus
Me.Combo1.Dropdown
End If
End Sub
Private Sub Combo1_Click()
If MsgBox("You selected " & Me.Combo1.Value & " is this correct?", vbYesNo) = vbYes Then
Else
Me.Combo1 = Null
Me.Combo1.SetFocus
Me.Combo1.Dropdown
End If
End Sub