i did this beacuse i want that when i will make the window bigger he will grow as it shuld be:
public Form1()
{
InitializeComponent();
new Form1(ref webBrowser3, new Size(50, 50));
}
private void Form1_Resize(object sender, EventArgs e)
{
UpdatewebBrowser3(new Size(256 + (this.Width - this.MinimumSize.Width), 256 + (this.Height - this.MinimumSize.Height)));
}
some one can tell me whats wrong with it?? cus its not working