B
bw
Consider the following:
Private Sub Form_Current()
If Me!Status = "Converted" Then
If Me![OC] > 0 Or Me![ODB] > 0 Or Me![OInst] > 0 Then
Else
MsgBox "The Assignment is incomplete.", vbInformation, "Assignments"
End If
End If
End Sub
The message is displayed BEFORE the current record Form is displayed.
I want the current record to be displayed FIRST, and then have the message show on
top of the current record Form.
Nothing I try seems to work.
What is the proper event(s) to use for this, and is there any special coding that would be
necessary?
Thanks,
Bernie
Private Sub Form_Current()
If Me!Status = "Converted" Then
If Me![OC] > 0 Or Me![ODB] > 0 Or Me![OInst] > 0 Then
Else
MsgBox "The Assignment is incomplete.", vbInformation, "Assignments"
End If
End If
End Sub
The message is displayed BEFORE the current record Form is displayed.
I want the current record to be displayed FIRST, and then have the message show on
top of the current record Form.
Nothing I try seems to work.
What is the proper event(s) to use for this, and is there any special coding that would be
necessary?
Thanks,
Bernie