Hi,
Assuming you aren't using the Tag property for anything at the moment, you could store the old values there like this
Then if you need to undo that, simply add a button to put the tag back![]()
Private Sub cmdReset_Click() For Each ctl In Controls If TypeName(ctl) = "TextBox" Then ctl.Tag = ctl.Text ctl.Text = vbNullString End If Next
![]()
For Each ctl In Controls If TypeName(ctl) = "TextBox" Then ctl.Text = ctl.Tag End If Next
Bookmarks