Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cancel button

Status
Not open for further replies.

gray78

Programmer
Feb 3, 2005
78
US
I have a simple for and want to put in a cancel/reset button in. When clicked it will not store the data and will set the fields (4) back to their previous state.

Can anyone help??

Thanks
 
See thread702-1027702 posted earlier today, among other threads.

Greg
"Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill
 
Looking for an easier solution than that, just want a button that resets the form.

Can this be done?

Thanks
 
Me.Undo?

If that doesn't work, something like

Dim ctl as Control

For each ctl in Me.Controls
ctl = "" 'or ctl = null
Next
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top