G
Guest
can anyone tell me why this code's not working in my a2k mdb:
Private Sub Form_AfterDelConfirm(Status As Integer)
If Me.[Continuing].Value = "Yes" Then
Msg1 = MsgBox("Be advised you have just deleted an AE which continues past
this cycle.", vbCritical, "Critical")
End If
End Sub
Private Sub Form_BeforeDelConfirm(Cancel As Integer, Response As Integer)
If Me.[Continuing].Value = "Yes" Then
Msg1 = MsgBox("Be advised you are preparing to delete an AE which continues
past this cycle.", vbCritical, "Critical")
End If
End Sub
Private Sub Form_AfterDelConfirm(Status As Integer)
If Me.[Continuing].Value = "Yes" Then
Msg1 = MsgBox("Be advised you have just deleted an AE which continues past
this cycle.", vbCritical, "Critical")
End If
End Sub
Private Sub Form_BeforeDelConfirm(Cancel As Integer, Response As Integer)
If Me.[Continuing].Value = "Yes" Then
Msg1 = MsgBox("Be advised you are preparing to delete an AE which continues
past this cycle.", vbCritical, "Critical")
End If
End Sub