Clear a text box

V

Van T. Dinh

Forms!YourForm!TextBox.Undo

Check Access VB Help on the Undo Method of a Control.
 
J

Jessica

Try this:

textboxname.value = null

This sets text box value to a null value and clears all
typing within it.

Jessica
 
Top