Clear text box on form

B

Beverly76

What code do I type to clear a text box on a form. After I use the data to
jump to a record in the form, I would like the box to be reset essentially.
 
C

Chad

you can set your textbox = to Null or to ""

For example:

Forms![NameofForm]![NameOftextbox] = ""

or

= Null

Chad
 
Top