|
Bekijk de voortgang van je macro |
|
|
|
|
Indien je macro lange tijd in beslag neemt, is het handig om deze code toe te voegen, zodat de gebruiker kan zien hoe lang de macro nog duurt; Sub DisplayProgressInStatusbar() ' Makes sure that the statusbar is visible. Application.DisplayStatusBar = True
' Enter your message for the statusbar: Application.StatusBar = "Now processing...."
' -* Add your code here *-
' When your code is finished, reset the statusbar: Application.StatusBar = False End Sub
|