Reset Button?

Harquor

New Member
Joined
Jun 22, 2006
Messages
36
I would like to enter a reset button on my bid form that either clears a set of fields or runs a macro to clear the fields. I know it's possible to do something like this because I've seen it on another sheet to print or navigate back to a main sheet. How would I enter this for my application?
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Code:
Private Sub btnReset_Click()
  Me.TextBox1.Value = vbNullString
  Me.CheckBox1.Value = False
  Me.Label1.Caption = "Default"
  ' ...
End Sub
 
Upvote 0
Controls on a userform, yes.
 
Upvote 0
OK. Thank you. I created my macro and inserted an active x command button. I can't get the two to work together though?
 
Upvote 0
I need a little more information about what you did and what happens.
 
Upvote 0

Forum statistics

Threads
1,215,005
Messages
6,122,661
Members
449,091
Latest member
peppernaut

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top