VLMenuPlus Reference

EventClearMenuHelp

See Also See Also Applies To Applies To

This event occurs when a popup menu is closed. It is used to indicate that you need to clear the status bar. If AutoShowHelp property is set to True, then control will automatically try to locate and clear the statusbar.

 

Syntax

Private Sub object _ClearMenuHelp( )

The ClearMenuHelp event syntax has these parts:

Part Description
object An object expression that evaluates to an object of VLMenuPlus type.

 

Sample

Following code snippet shows the use of this event :


Private Sub VLMenuPlus1_ClearMenuHelp()
   Me.lblStatusbar.Caption = ""
End Sub

As you can see, even for a non-standard statusbar, you need just a single line of code to ensure that status bar help messages get cleared at the appropriate time.