M
Mrstacy
When I select "Other" in the Discovered How Field, and attempt to exit
form, I get the message box error. I also get the No Current Record
message. Any help is appreciated.
Access 2003 Windows XP
Private Sub Form_BeforeUpdate(Cancel As Integer)
If Me.DiscoveredHow = "Other" Then
If Nz(Me.Other, "") = "" Then
Cancel = True
MsgBox "Miscellaneous explanation is required!", vbOKOnly +
vbInformation
Me.Other.SetFocus
End If
End If
End Sub
form, I get the message box error. I also get the No Current Record
message. Any help is appreciated.
Access 2003 Windows XP
Private Sub Form_BeforeUpdate(Cancel As Integer)
If Me.DiscoveredHow = "Other" Then
If Nz(Me.Other, "") = "" Then
Cancel = True
MsgBox "Miscellaneous explanation is required!", vbOKOnly +
vbInformation
Me.Other.SetFocus
End If
End If
End Sub