Hello Community,
I would like to know if there is a way to get the corresponding list index of another list like below:
Dim panelTitle As New List(Of String)
panelTitle.Add("First Panel")
panelTitle.Add("Second Panel")
panelTitle.Add("Third Panel")
Dim panelName As New List(Of Panel)
panelName.Add(Panel1)
panelName.Add(Panel2)
panelName.Add(Panel3)
So when I choose "Second Panel" I want the returned panel in this case I want it to be "Panel2".