When you are creating VBA macros, you can place a message on the status bar by using (oddly enough) the StatusBar property. For instance, the statement
StatusBar = "I'm working as fast as I can..."
will print the message within the quote marks on the status bar. If you use the StatusBar property, you can keep users informed about what your macro is doing. (After all, it's best not to leave them wondering.) If you want to "turn off" what is displayed in the status bar, you can do so by using the following statement:
StatusBar = ""
Microsoft removed support for the StatusBar property from Word 2013, so this tip will only work with Word 2007 and Word 2010.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (13040) applies to Microsoft Word 2007 and 2010. You can find a version of this tip for the older menu interface of Word here: Displaying a Message in the Status Bar.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
When writing a macro, a common task is the need to compare two strings. You can do this by "normalizing" the strings, as ...
Discover MoreNeed to know if a number in a macro is odd or even? It's easy to figure out with the simple calculation shown in this tip.
Discover MoreThe main body of your text is only one part of what makes up the entire document. Documents can consist of other ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2017-11-14 18:56:20
Stephen
Support for statusbar may have been stopped, but this code still works for me in Word 2016.
Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments