Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
cboStartHour = ""
cboStartHour.RowSource = ""
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyEscape Then
If Screen.ActiveControl = Me.MyComboBox Then
Me.MyComboBox = ""
End If
End If
End Sub
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyEscape Then
If Screen.ActiveControl = Me.MyComboBox Then
Me.MyComboBox.RowSource = ""
End If
End If
End Sub