E Eric Nov 21, 2003 #1 How do I clear a text box in if there are chareters (sp) in the text box using VBA?
V Van T. Dinh Nov 21, 2003 #2 Forms!YourForm!TextBox.Undo Check Access VB Help on the Undo Method of a Control.
J Jessica Nov 21, 2003 #3 Try this: textboxname.value = null This sets text box value to a null value and clears all typing within it. Jessica
Try this: textboxname.value = null This sets text box value to a null value and clears all typing within it. Jessica