Hi,
I need a way to reset a form so it is as though it was first opened. Can I just unload the form and then load it, or will that just retain the same settings when it opens?
Squirrelly1:D
Printable View
Hi,
I need a way to reset a form so it is as though it was first opened. Can I just unload the form and then load it, or will that just retain the same settings when it opens?
Squirrelly1:D
Theoretically. I don't know if it will deallocate all variables though. Try this:
VB Code:
Unload Form1 Set Form1 = Nothing Load Form1 Form1.Show