DblClick Event

Applies To
Label, ListBox, PictureBox, VideoBox, LED, ProgressBar, Grid

Description
Occurs when a control is double clicked.

Usage

Form_Control_DblClick (Sender$ As String)  
Sender$
Name of a control that sent the event.

Remarks
The DblClick event is used to respond to a double click on a control by the user. You can use the Sender$ parameter to determine which control sent the event.

See Also
Label, ListBox, PictureBox, VideoBox, LED, ProgressBar

Example

Function frmMain_lstModels_DblClick(Sender$ As String)  Integer index  
  GGet frmMain.lstModels.SelectedIndex, index  
  GGet frmMain.lstModels.List(index), g_CurrModel$  
Fend