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.
MsgBox "The length of CustomerID is " & Len (Me!txtCustomerID), vbInformation+vbOkOnly
Select Fieldname1, Fieldname2, Fieldname3
From Tablename
Where Fieldname4 Is Null;
If IsNull (Me.txtTextbox) Then
MsgBox "txtTextbox Is Null", vbOkOnly+vbInformation
End If
Select Fieldname1, Fieldname2, Fieldname3
From Tablename
Where Fieldname4 Is Not Null;
If Not IsNull (Me.txtTextbox) Then
MsgBox "txtTextbox Is Not Null", vbOkOnly+vbInformation
End If
If Len (Me.txtTextfield & "") > 0 Then
MsgBox "txtTextfield is not null", vbInformation+vbOkOnly ' value is not null
Else
MsgBox "txtTextfield is null", vbInformation+vbOkOnly
End If