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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel userform 2

Status
Not open for further replies.

BobHudson

Programmer
Dec 26, 2002
4
US
I have created a userform and I noticed that if I move it on the screen that I see a trail of where the userform was (Much like the mouse trails option for LCD screens, except the trail does not go away). I was wondering what I had turned on to get this to happen.

Thanks for any suggestions.

Bob Hudson
 
Bob,

Somewhere in your code, prior to displaying the Userform, you have turned of screen updating (
Code:
Application.ScreenUpdating = False
). Make sure screen updating is on (=True) before displaying Userforms or MsgBox. Typically, you would turn screen updating off while making changes to a sheet, then restore.


HTH
Mike
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top