! 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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top