T
Tom
I have the following code for a subform
Private Sub Description_AfterUpdate()
If InStr(1, Me.Description, "Approval") <> 0 Then
Call MsgBox("Please, update the Approval Date on the
CASE STATUS LIST !!!")
End If
End Sub
How I can add another condition to the same Description
field after update
If InStr(1, Me.Description, "Receipt") <> 0 Then
Call MsgBox("Please, update the Receipt Date on the
CASE STATUS LIST !!!")
Private Sub Description_AfterUpdate()
If InStr(1, Me.Description, "Approval") <> 0 Then
Call MsgBox("Please, update the Approval Date on the
CASE STATUS LIST !!!")
End If
End Sub
How I can add another condition to the same Description
field after update
If InStr(1, Me.Description, "Receipt") <> 0 Then
Call MsgBox("Please, update the Receipt Date on the
CASE STATUS LIST !!!")