is there a way to add items to a listbox or listview control during run time instead of design time?
Printable View
is there a way to add items to a listbox or listview control during run time instead of design time?
use listbox.additem "One"
dim i as integer
for i=0 to 10
listbox.additem "one"
next i
you can remov listbox.removitem
Sure,
use LISTBOXName.AddItem=......
The Item must be a STRING-Variable