Forms in CF

  • Thread starter Thread starter Chris Czornen
  • Start date Start date
C

Chris Czornen

Hi, i was reading a lot, but i couldn´t find the right solution.

I have a mobile app like this:

RootForm
......FormA
............SubFormA
............SubFormB
......FormB
............SubFormC
............SubFormD


I´m showing the forms using frm.Show() and ShowDialog(). My problem is that
when the user is on SubFormD and needs to navigate to RootForm has to close
2 forms.

I read about StackForm from Microsoft. Is it the right wat to do that ? Or
are a another way ? Basically my problem is about navigations between
multiple forms.

Thanks a lot for any help.
 
Chris,

Would the user always go from SubFormD to RootForm? If so, you could
automate the double form closing.
 
Sorry, how do you do double closing ?

thanks


Ginny Caughey said:
Chris,

Would the user always go from SubFormD to RootForm? If so, you could
automate the double form closing.
 
I forgot your form names, but when the 3rd level down form is closed and
control returns to the 2nd level down - then you can programmatically close
that one too so the top level form is the active one again. This all assumes
using ShowDialog so you only have one form active at a time.
 
Back
Top