! Clear Text Boxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a simple form with text boxes for data entry and I would like to set
up a button that upon clicking would clear all of the text boxes. Can
someone send me the code for this please?

Thanks,
Sean
 
I'm pretty sure you have to explicitly clear each one, e.g.:

textBox1 = Null
textBox2 = Null

Just define an event procedure for the On CLick event for the button and
put those assignment statements in it, one for each text box.
 
Back
Top