I've created a few userforms in a Excel workbook and whenever a user starts one I set Application.ScreenUpdating
to false.
But when the user moves the userform around it always leaves a copy behind (see image)
How can I prevent this but still keep Application.ScreenUpdating
set to false.
Screenupdating
off as soon as you load the form?ScreenUpdating
. The user moves around the progress bar for whatever reason and then sees multiple forms which doesn't look very pretty and maybe even confuses them to a point where they can't tell which one is the "active" userform. Another example: The user wants to add a new customer. For this, I make templates visible and select ranges etc. which I also wouldn't want them to see.ScreenUpdating = False
right before the whole process of adding a new customer begins and set it back toTrue
after it finished.