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