! Clear Text Boxes

S

Sean

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
 
J

Jim Burke in Novi

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