The ShowStatusBar property returns or sets the status bar visibility. Returns a Boolean.
Syntax
object.ShowStatusBar
object.ShowStatusBar = bVisible
Parameter |
Type |
Description |
bVisible |
Boolean |
required; true to display the status bar |
Example 1
This example demonstrates how to return whether or not the status bar is displayed.
Debug.Print mvApp.ShowStatusBar
Example 2
This example demonstrates how to hide the status bar.
mvApp.ShowStatusBar = False
Used by: Application object