April 2006
Beginner
1114 pages
98h 16m
English
control.List([Row, Column]) [= setting]
Sets or returns the value of one item within the list or all items in the list.
|
Argument |
Settings |
|
|
The row of an item in the list |
|
|
The column of an item in the list |
Omit Row and Column to get or set the array containing all items in the list. For example, the following code loads an array of strings into the control:
Private Sub UserForm_Initialize( )
ComboBox1.List = Split("This, that, other", ",")
' Select the first item.
ComboBox1.ListIndex = 0
End SubRead now
Unlock full access