Is it possible to put 2 panels inside a groupbox??
Because I put 2 panels inside my groupbox and I Made them hidden.
Whenever I try to make them Visible only the first panel appears.
I've tried it without being inside the groupbox and it worked fine.
Is there wrong with my code??
if (comboBox3.SelectedIndex == 1)
{
panel4.Visible = false;
panel9.Visible = true;
}
if (comboBox3.SelectedIndex == 2)
{
panel9.Visible = false;
panel4.Visible = true;
}