Private Sub frm_SubOrders_Enter()
If Len(Me.TodaysDate & "") = 0 Then
MsgBox "You must select a date.", vbOKOnly, "Select Date"
Me.TodaysDate.SetFocus
ElseIf Len(Me.cboSelName & "") = 0 Then
MsgBox "You must enter your name.", vbOKOnly, "Enter Name"
Me.cboSelName.SetFocus
ElseIf Len(Me.cbo_PickTime & "") = 0 Then
MsgBox "You must pick a time slot.", vbOKOnly, "Select Time Slot."
Me.cbo_PickTime.SetFocus
End If
End Sub