Hi,
I call a new form within my main form like this:
dim toto as new myNewForm
toto.ShowDialog(Me)
From this new form, I want to access public information from the owner (the main form). I can I do that? I tried something like this in the myNewForm without success:
msgbox (Me.Owner.mainFormPublicVariable)
Can somebody help me?
I call a new form within my main form like this:
dim toto as new myNewForm
toto.ShowDialog(Me)
From this new form, I want to access public information from the owner (the main form). I can I do that? I tried something like this in the myNewForm without success:
msgbox (Me.Owner.mainFormPublicVariable)
Can somebody help me?