Reset Button

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

Guest

Hey
I have a form that has three combo boxes and multiple textboxes.
Most of the text boxes are linked in to the combo boxes to present values,
but some a simply text boxes for entering values for calculations.

I want to install a reset button to set the reset the combo boxes and the
text boxes.

What is the best method for this.

Thanks

Dave
 
If the values that you are trying to reset are Number or Date
Try
Me.[TextComboName] = Null

If its String type
Me.[TextComboName] = ""
 

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