Reset Button

D

Dave

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
 
O

Ofer Cohen

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

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