Thread: [Solved] Taskbar
View Single Post
 
Old 02-19-2012, 03:12 PM
JBeaucaire JBeaucaire is offline Windows XP Office 2003
Advanced Beginner
 
Join Date: Dec 2011
Posts: 51
JBeaucaire is on a distinguished road
Default

Odd, have you tried completely turning off screenupdating, too?

Code:
Sub MyMacro()
Application.ScreenUpdating = False
Application.DisplayStatusBar = False

    'some code
    'some code
    'some code

Application.DisplayStatusBar = True
Application.ScreenUpdating = True
End Sub

This should be necessary except once at the top and once at the bottom to turn it back to normal.
Reply With Quote