I'm loading a Listbox with a textfile and splitting the record into array, only adding the "Grp_elements(1)" into the listbox. That part works ok, but when I doubleclick an item in the Listbox I want to add the "Grp_elements(0)" to a textbox this part doesn't work...
It says that Grp_elements(0) is not declared...Wht am I doing wrong???
It says that Grp_elements(0) is not declared...Wht am I doing wrong???
Code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim Group As New IO.StreamReader(AlphaFileGroup)
While Group.Peek > -1
Dim Grp_line As String = Group.ReadLine()
Dim Grp_elements() As String = Grp_line.Split(("|"))
ListBox1.Items.Add(Grp_elements(1))
End While
Group.Close()
End Sub
Private Sub ListBox1_DoubleClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.DoubleClick
TextBox1.Text = ListBox1.SelectedItem(Grp_elements(0))
End Sub