Hi~
In order to get the next item in Listbox to be appear to Label(after first item finish to appear), any one can suggest me the correction of this code.
This code is appear all items in Listbox to Label in one row, which is out of my mission.
Help~ :(
In order to get the next item in Listbox to be appear to Label(after first item finish to appear), any one can suggest me the correction of this code.
Code:
Dim x As String
For i As Integer = 0 To ListBox1.Items.Count - 1
x += ListBox1.Items.Item(i) & " "
Next
Label1.Text = x
Help~ :(