Forms in CF

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.
 
G

Ginny Caughey

Chris,

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

Chris Czornen

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.
 
G

Ginny Caughey

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top