Occurs when a message is created in the application status bar.
Use the StatusBar object to display messages.
| Visual Basic |
|---|
Public Event StatusBarEvent( _
ByVal Text As String, _
ByVal messageType As BoStatusBarMessageType _
) |
- Text
- The message
- messageType
The message typeValue Description smt_None Indicates no message was sent to the status bar. Use this type only to check if a message was sent or to clear a previous message immediately.
smt_Warning Warning message (blue background) smt_Error Error message (red background) smt_Success Success message (green background)