B
Bala Nagarajan
Hello,
I am trying to open a new form (form A)from another forms' (form B)
load event but the formB when it opens the controls within it does not paint
properly. I see the controls are transparent.
Am i doing something wrong by opening a new form from a form's load event?
//here is the psedo code
private void Form1_Load(object sender, System.EventArgs e)
{
Form2 fr2 = new Form2();
fr2.Show();//though the form opens the controls are tranparent and does not
get painted.
}
The reason why i am doing this is to show a introduction form before my
maiin form in the application opens. How do i acheive this?
Thanks
Bala
I am trying to open a new form (form A)from another forms' (form B)
load event but the formB when it opens the controls within it does not paint
properly. I see the controls are transparent.
Am i doing something wrong by opening a new form from a form's load event?
//here is the psedo code
private void Form1_Load(object sender, System.EventArgs e)
{
Form2 fr2 = new Form2();
fr2.Show();//though the form opens the controls are tranparent and does not
get painted.
}
The reason why i am doing this is to show a introduction form before my
maiin form in the application opens. How do i acheive this?
Thanks
Bala