Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[blue] Dim Msg As String, Style As Integer, Title As String, DL As String
DL = vbNewLine & vbNewLine
If Not Me.RecordsetClone.RecordCount Then
Msg = "No records returned from source!" & DL & _
"Change criteria and try again . . ."
Style = vbInformation + vbOKOnly
Title = "No Records Available Notice! . . ."
MsgBox Msg, Style, Title
End If[/blue]
[blue] Dim Msg As String, Style As Integer, Title As String, DL As String
DL = vbNewLine & vbNewLine
If Me.RecordsetClone.RecordCount = 0 Then
Msg = "No records returned from source!" & DL & _
"Change criteria and try again . . ."
Style = vbInformation + vbOKOnly
Title = "No Records Available Notice! . . ."
MsgBox Msg, Style, Title
[purple][b]Cancel = True[/b][/purple]
End If[/blue]