Instead of using:
Me.DateClosed.SetFocus
If Me.DateClosed.Text = "" Then
I want to use the text box's value property to bypass having to set focus.
Me.DateClosed.Value = "" Then
I don't think .Value will accept zero lengh string arguments. I have tried using Null, 0, and the IsNull function.
How do I test the condition when the text box is empty?
Me.DateClosed.SetFocus
If Me.DateClosed.Text = "" Then
I want to use the text box's value property to bypass having to set focus.
Me.DateClosed.Value = "" Then
I don't think .Value will accept zero lengh string arguments. I have tried using Null, 0, and the IsNull function.
How do I test the condition when the text box is empty?