i used this line to select items in a row in a list box ''''''ListBox1.SelectedIndex = ListBox1.SelectedIndex + 1'''''' but when i get to the last item an error occures ERROR :(((argument out of range exception was unhandled))) can any one give a solution '''''VB.NET 2005'''''
sixecho
Posts
-
list box control -
multiline in textboxeswhen adding data from a list box to a text box the data is add on after the other eg. (123456789) i would like to know if there is a way to make them appear one under another eg. 1 2 3 4 5 6
-
send data from listbox to an array variableDim qq As Array qq = ListBox1 ''''' it didn't work can any one help me with this problem?????
-
send data from a listbox to textboxcould someone help me with this problem the error said Object reference not set to an instance of an object. Dim dd As Array Dim ee As Integer Dim tt As String ListBox1.Items.CopyTo(dd, ee) ''''error occurs here'''' tt = ee TextBox1.Text = tt
-
send data from a listbox to textboxthis code was helpful but what i really wanted was to get all the items in the list box at once to the text box...(without selecting any item)...
-
send data from a listbox to textboxcould u please tell me a way to send data from a listbox to textbox vb.net 2005
-
convert an array to a stringi am writing a program to get processes from the task manager to a text box. i managed to get the processes to an variabel,but when i try to send the data to a string variable...... it does not work. i want to know how to change data from an array to a string.... shiran