S
selgin
This is Access 2003.
I have a parent form - PatientForm2 and a child form - Rx.
I am trying to set the focus to RxStatus on my Rx subform if it is blank and
DateComplete has data entered.
This is the current code I have. The message box opens up but thats it.
If IsNull(DateComplete) = False And IsNull(Me.RxStatus) = True Then
MsgBox ("Rx Status cannot be Blank")
Me.RxStatus.SetFocus
Me.Repaint
Else
End If
TIA for any help
Steve
I have a parent form - PatientForm2 and a child form - Rx.
I am trying to set the focus to RxStatus on my Rx subform if it is blank and
DateComplete has data entered.
This is the current code I have. The message box opens up but thats it.
If IsNull(DateComplete) = False And IsNull(Me.RxStatus) = True Then
MsgBox ("Rx Status cannot be Blank")
Me.RxStatus.SetFocus
Me.Repaint
Else
End If
TIA for any help
Steve