View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Coza Coza is offline
external usenet poster
 
Posts: 38
Default Screen still changes. Why ? (Application.Screenupdating = False not working

I have a Userfrom displayed upon the press of a button,

Sub Button10_Click()
Application.ScreenUpdating = False
UserForm4.Show
Application.ScreenUpdating = True
End Sub

BUT the page still changes why?
I also have the Application.Screenupdating = false included in the
Userfor4.Activate event too.

Corey....