Any Value (1 Viewer)

dadrew

Registered User.
Local time
Today, 00:58
Joined
Sep 15, 2003
Messages
186
Is there a way that I can say

If Me. TextBox1 = "Any Value" Then
Me.checkbox1 = True

I was trying to do this in a querry but the problem is the same. I'm sure theres a way, but!
 

Mile-O

Back once again...
Local time
Today, 00:58
Joined
Dec 10, 2002
Messages
11,316
Code:
Me.MyCheckBox = Not IsNull(Me.MyTextBox)
 

dadrew

Registered User.
Local time
Today, 00:58
Joined
Sep 15, 2003
Messages
186
Thank you! :)
 

Users who are viewing this thread

Top Bottom