mmtraining
IS-IT--Management
Hello People,
I have got a bit confused. I want to freeze the screen whilst VBA is doing a lot of hopping round in the background. The problem is that I get a "ghost" of the headers and footers, which doesn't look very professional.
Any ideas?????
Thanx in advance,
Carol
Berlin, Germany
I have got a bit confused. I want to freeze the screen whilst VBA is doing a lot of hopping round in the background. The problem is that I get a "ghost" of the headers and footers, which doesn't look very professional.
Code:
Dim temp As String
Application.ScreenUpdating = False ' WHY DOESN'T THIS BIT WORK???
Schutz_aufheben ' this is a sub that removes the document protection
StatusBar = "Bitte warten, die Felder werden aktualisiert" ' This just tells people what is going on
System.Cursor = wdCursorWait
' Then comes all the hopping around
System.Cursor = wdCursorNormal
Application.ScreenRefresh
Application.ScreenUpdating = True
Thanx in advance,
Carol
Berlin, Germany