ToolTipText Property

Applies To
Button, Label, TextBox, RadioButton, CheckBox, ListBox, ComboBox, PictureBox, GroupBox, VideoBox, LED, ProgressBar, TrackBar, StatusBar, Grid , TabControl

Description
Used to show a small rectangular pop-up window that displays a brief description of a control's purpose when the user rests the mouse pointer over the control.

Usage

GGet Form.Control.ToolTipText, var  
GSet  Form.Control.ToolTipText, value  
Form
Name of a form or string variable containing a form name.
Control
Name of a control or string variable containing a control name.
var
String variable that will contain the value of the property.
value
String expression for the new value of the property.

Values
A string containing the tool tip text of the control.
Default: Empty string

See Also
Button, Label, TextBox, RadioButton, Checkbox, ListBox, ComboBox, PictureBox, GroupBox, VideoBox, LED, ProgressBar, TrackBar, StatusBar , TabControl

Example

GSet frmMain.btnStart.ToolTipText, "Click Here to Start"