Controls > Advanced Controls > List Box > List Box Events
List Box Events
SelChanged
The SelChanged event is fired when the selection in the list box changes. It can be used to confirm the user selection.
JScript
function ListBox_SelChanged {};
VBscript
Sub ListBox_SelChanged()
DblClick
The DblClick event is fired when double clicking an element in the list box.
JScript
function ListBox_DblClick {};
VBscript
ListBox_DblClick()
Was this helpful?