I have a Listview control in a User Control and I want to access the selected item(s) from Form1. Even if I declare it as a public variable I cannot access it from any other forms.
The following code line would be in Form1:
Dim Index As Integer = UserControl1.Listview1.SelectedItems(0).Index
The issue is I cannot even get the "Listview1" intellisense to pop up. Is it possible to do that?