Controls > Advanced Controls > List Box > List Box Events
List Box Events
SelChanged
The SelChanged event is initiated 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()
Python
def ListBox_SelChanged():
DblClick
The DblClick event is initiated when double clicking an element in the list box.
JScript
function ListBox_DblClick {};
VBScript
ListBox_DblClick()
Python
def ListBox_DblClick():
Was this helpful?