In Visual C# when I click a button, I want to load another form. But before that form loads, I want to fill the textboxes with some text. I tried to put some commands to d
Try this.. :)
Form1 f1 = (Form1)Application.OpenForms["Form1"]; TextBox tb = (TextBox)f1.Controls["TextBox1"]; tb.Text = "Value";