DlgListBox.SetProperties

DlgListBox.SetProperties ( 

number ControlID,

table  Properties )

Example 1

DlgListBox.SetProperties(CTRL_LIST_BOX, {Enabled=false});

Disables the list box control with control id "CTRL_LIST_BOX."

Example 2

DlgListBox.SetProperties(CTRL_LIST_BOX, {Visible=false});

Sets the visibility of the list box control with control id "CTRL_LIST_BOX" to false.

Example 3

DlgListBox.SetItemProperties(nControlID, tbProperties);

Sets the properties of the list box whose control is stored in the variable "nControlID" to the properties contained in the table "tbPproperties".

See also:  Related Actions