How can I extract all the items (text) of a listbox and put them all into one string into a textbox as a file (Tom,Jim,Jack,...)
Something like:
Dim item As String
For Each item In ListBox1.Items
Me.List1.Text = Me.List1.Text + item
Next
MsgBox(List1.Text)
But I don't know how to convert DataRowView into String.
Something like:
Dim item As String
For Each item In ListBox1.Items
Me.List1.Text = Me.List1.Text + item
Next
MsgBox(List1.Text)
But I don't know how to convert DataRowView into String.