Click Event
Applies To
Button, Label, RadioButton, Checkbox, ListBox, ComboBox, PictureBox, GroupBox, VideoBox, TextBox, ProgressBar, StatusBar, Grid, TabControl, Wizard, TreeView
Description
Occurs when a control is clicked.
Usage
Form_Control_Click (Sender$ As String)
- Sender$
- Name of a control that sent the event.
Remarks
The Click event is used to respond to a click on a control by the user. You can use the Sender$ parameter to determine which control sent the event. This is useful when you want to use one function to handle more than one control, such as for radio buttons and check boxes.
See Also
Button Control , Label Control , RadioButton Control , CheckBox Control , ListBox Control , ComboBox Control , PictureBox Control , GroupBox Control , VideoBox Control , ProgressBar Control , StatusBar Control , Wizard Control , Tree View Control
Example
Function frmMain_btnStart_Click(Sender$ As String) Xqt mainFend