I have this layout:
A UserControl inside a Panel. Panel is inside Form1.
WebBrowser is in another panel that is inside of Form1 as well.
So:
Form1
Panel1 Panel2
MyUserControl TheWebBrowser
How could I set the URL for my webbrowser in Panel2, from withing MyUserControl?
I've tried something like this but it doesn't work well.
this.Parent.Parent.Controls["panel2"].Controls["webBrowser1"]