send data from listbox to an array variable
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
Dim qq As Array qq = ListBox1 ''''' it didn't work can any one help me with this problem?????
first of all do you get an error?? (if so please post it) second: you are trying to convert an control of the type listbox to an array (with this code) that will not work you will probaly have run trough you'r listboxitems and add them to the array Dim qq As String() = {0} for each l as listboxitem in listbox1.itmes qq(0) = l.text next or something like this