Type
(number) A number representing the type of list box to use.
CONSTANT |
VALUE DESCRIPTION |
|
LB_LISTBOX |
0 |
The object is a normal list box. |
LB_CHECKLISTBOX |
1 |
The object is a checklist box. Each item in the list box has an associated checkbox that can be checked or unchecked. |
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
ListBox.SetUpdate
OverviewExamples
ListBox.SetUpdate ( string ObjectName,
boolean Enabled = true )
De s cr ip t ion
Sets the enabled/disabled update state of a listbox object. The update state controls whether or not the listbox object will be redrawn to reflect any changes that have been made.
Note: When a listbox object's update state is disabled, any actions to modify it will not be visible to the user until this action is called to enable the update state.
P arame t er s
ObjectName
(string) The name of the listbox object.