IT's Youtube Account checker. I need to send from listbox to textbox login and password. Login and Password saved in format
Code:
login:password
Code from Button start:
Code:
Private Sub Zaladuj_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Zaladuj.Click
OpenFileDialog1.Title = "Open account file"
OpenFileDialog1.ShowDialog()
Dim wczytaj As New IO.StreamReader(OpenFileDialog1.FileName)
While (wczytaj.Peek() > -1)
konta.Items.Add(wczytaj.ReadLine)
ilosc.Text = konta.Items.Count
End While
End Sub






