June 21st, 2000, 01:32 PM
is there a way to add items to a listbox or listview control during run time instead of design time?
|
Click to See Complete Forum and Search --> : add items List June 21st, 2000, 01:32 PM is there a way to add items to a listbox or listview control during run time instead of design time? June 21st, 2000, 01:40 PM use listbox.additem "One" dim i as integer for i=0 to 10 listbox.additem "one" next i you can remov listbox.removitem Opus June 21st, 2000, 01:44 PM Sure, use LISTBOXName.AddItem=...... The Item must be a STRING-Variable codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |