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.
If Me.[i]cboCombo[/i].RowSource <> "" Then
Set rs = CurrentDb.OpenRecordset(Me.[i]cboCombo[/i].RowSource)
If rs.BOF Then
strRecError = "No Records. "
End If
Else
strRecError = "No recordset. "
End If
If strRecError <> "" Then
MsgBox (strRecError & "Pick one of these.")
'Me.[i]cboCombo[/i].RowSource="Some Other Query"
End If
End Sub