ToolTipText Property

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

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 Control , Label Control , TextBox Control , RadioButton Control , CheckBox Control , ListBox Control , ComboBox Control , PictureBox Control , GroupBox Control , VideoBox Control , LED Control , ProgressBar Control , TrackBar Control , StatusBar Control , Tab Control, Wizard Control , Tree View Control

Example

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