Dialogue box ghosting

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

Hi

I have written some VB which invokes a form within the sheet, it all work
fine and I have to say I'm quite pleased with it for a novice.

Anyway, when I move the dialogue box around I get what appears to be a
graphics problem as it looks like ghosting around the screen. Have I
programmed something wrong?

Thanks

Steve
 
somewhere in your code you have done this:

Application.ScreenUpdating = False

set it back to True before the form displays
 
I have indeed

Many Thanks

Steve

john said:
somewhere in your code you have done this:

Application.ScreenUpdating = False

set it back to True before the form displays
 
Back
Top