G
Guest
I have a textbox that one will enter a number to search. The output if the
number exists is a report but if the number does not exist, I would like the
messagebox to indicate the number the user entered that it does not exist.
he is what my messagebox currently has:
Private Sub Report_NoData(Cancel As Integer)
MsgBox "The acctount number entered is not in the database",
vbInformation, "No such Accout number"
Cancel = True
End Sub
number exists is a report but if the number does not exist, I would like the
messagebox to indicate the number the user entered that it does not exist.
he is what my messagebox currently has:
Private Sub Report_NoData(Cancel As Integer)
MsgBox "The acctount number entered is not in the database",
vbInformation, "No such Accout number"
Cancel = True
End Sub