|
Verander de titel van het excel werkblad |
|
|
|
|
Deze code maakt het mogelijk om de titel van je excelwerkblad te veranderen; Sub ReplaceTitleBar() ' Place the current files path and filename in the titlebar: Windows(1).Caption = (ActiveWorkbook.FullName)
' Place your own application name in the titlebar: Application.Caption = ("Your text here") End Sub
|