Clear textboxes

paulreed

Registered User.
Local time
Today, 05:39
Joined
Jan 30, 2003
Messages
42
I have a form which has 3 text boxes, which are used to enter a filter criteria, and also a triple state toggle button, so an inputter can type data which would filter a corresponding query.
I want to have a button on the form which would clear the contents of the text boxes, and return the toggle button to the NULL position, so that the inputter can input a new criteria, any ideas pls?
 
Me.Text1 = Null
Me.Text2 = Null
Me.Text3 = Null
Me.Toggle1 = Null
 
Thanks, now works great.
 

Users who are viewing this thread

Back
Top Bottom