Iam reading text from a textfile iam splitting it by # at te end of the line so get al lines into my listbox like this
listbox shows "name,surname,p honenumer" rows.
When i select one i want it to show in 3 textboxes, (txtname, txtsurname, txtnumber).
i know i can use listbox.selecte ditem but then i get the entire row. Is it even possible to split it again from the listbox?
Code:
aryTextFile = LineOfText.Split("#")
For i = 0 To UBound(aryTextFile)
ListBox1.Items.Add(aryTextFile(i))
Next i
When i select one i want it to show in 3 textboxes, (txtname, txtsurname, txtnumber).
i know i can use listbox.selecte ditem but then i get the entire row. Is it even possible to split it again from the listbox?
Comment