filmov
tv
Excel VBA UserForm ListBox Create New Row with AddItem and Specify its Row Number

Показать описание
Excel VBA UserForm ListBox Learn how to create new row with AddItem and specify its row number.
The source code used in this video:
Private Sub UserForm_Initialize()
With lbDays
.AddItem "Monday"
.AddItem "Tuesday"
.AddItem "Wednesday", 0
End With
End Sub
The source code used in this video:
Private Sub UserForm_Initialize()
With lbDays
.AddItem "Monday"
.AddItem "Tuesday"
.AddItem "Wednesday", 0
End With
End Sub