UserForm Problems

  • Thread starter Thread starter Joe
  • Start date Start date
J

Joe

I have an interesting problem with an Excel VBA app. I
have a number of user forms. Some of which work perfectly
and some of which smear and leave their immage behind when
they are moved. I can't find any difference in how the
forms are designed or invoked. Any suggestions as to what
I should look for?

Joe
 
I think it has something to do with the event for moving a window not
repainting properly. Have you searched the MS knoweldgebase?

Mike
 
You have set
Application.ScreenUpdating = False

somewhere before you show the errant userforms. You need to change it back
to true.
 
Back
Top