Form Display problem

  • Thread starter Thread starter KD
  • Start date Start date
K

KD

I am banging my head trying to display forms properly.

No matter what I seem to do they will not display.

Is there any reference anywhere to show my the "proper" way to do it.

It seems as if I try to show a form then show a second form on top,
when the second form closes the first form dissappears.

I am using sp3. I am extremely fluent in VB6 but fairly new .NET CF.

Please someone help.
 
Try:
formToShow.Show();
formToHide.Hide();
in that order.
If that doesn't work, post a code snippet.
 
Back
Top