I'm trying to do something like this from a UserControl:
code:
Private Sub Command2_Click()
UserControl3.TextBox1.Text = ListView5.SelectedItem.SubItems(2)
End Sub
But it says varible not defined, and it highlights Private Sub Command2_Click() and UserControl3.
How do I go from Control To Control?