I have some textboxes on my form. There is a button to clear the textbox fields, e.g,
Controls("txtCity").value = ""
Controls("txtState").value = ""
Here's the problem: When I close the form (Unload userform1) and then bring it back up again, the values are still there. How to clear these fields permanently?
Controls("txtCity").value = ""
Controls("txtState").value = ""
Here's the problem: When I close the form (Unload userform1) and then bring it back up again, the values are still there. How to clear these fields permanently?