Private Sub CMD_Submit_Click()
Dim STR_Enter As String
If Me.TXT_Test.Value = "" Then
STR_Enter = "Test Textbox"
End If
If STR_Enter = "" Then
MsgBox ("Empty")
Else
MsgBox ("MUST ENTER: " & STR_Enter & "")
End If
End Sub
It only catches it when you use <> not "" in the first IF statement. Why?