i have an array of string like this :
A
B
C
D
E
F
i know how to get the index of one letter in the array string like this
Dim itemindex As String = Array.IndexOf(myarr, "C")
TextBox2.Text = itemindex
It return for me the number 2
but i want to know how to do it in the Reverse way like if i give the index 2 i want it to return for me the letter C ?
i want to do that for tow array withe the same size one in the listbox if i select one item i want it to return for me the item in the second array that have the same index number
i give the index 2 i want it to return for me the letter Cwould be:Dim find = myArr(2)common ordinary array reference by index. No idea how the length from the title comes into playDim charc As String = ListBox2.SelectedItemSelect Case charc` Case charc`charc = myarr(ListBox1.SelectedIndex)End SelectTextBox1.Text = charcwork for me thank you so match !!!!