There is a groupBox in which I want to add a form.
for (int i = 0; i < 4; i++) { Form2 frm = new Form2(); groupBox.Controls.Add(frm); } Displays error. Is there a workaround to display the form in control?
Source: https://ru.stackoverflow.com/questions/664475/
All Articles