How would I get the date entered into a text box to appear in my msgbox - should no results be showed, the form that this msgbox will open on is not where the date entered field is.
Private Sub Form_Open(Cancel As Integer)
If Me.RecordsetClone.RecordCount = 0 Then
MsgBox "No certificates expired prior to ", vbInformation, "NO RECORDS EXPIRED"
Cancel = True
Exit Sub
End If
Thanks Ian
End Sub
Private Sub Form_Open(Cancel As Integer)
If Me.RecordsetClone.RecordCount = 0 Then
MsgBox "No certificates expired prior to ", vbInformation, "NO RECORDS EXPIRED"
Cancel = True
Exit Sub
End If
Thanks Ian
End Sub