Jump to content

Forms Navigation


Guest alhabibam

Recommended Posts

Guest alhabibam

My question is how to navigate throug forms. I need to close one form and open another one in the application, what commands should I use?

Thanks.

Link to comment
Share on other sites

Guest sharpstuff
My question is how to navigate throug forms. I need to close one form and open another one in the application, what commands should I use?

Thanks.

<{POST_SNAPBACK}>

Just create a new form in your project, then : -

MyForm mynewform = new MyForm();

mynewform.Show();

And to close : -

mynewform.Close();

Edited by sharpstuff
Link to comment
Share on other sites

Guest GOEran
My question is how to navigate throug forms. I need to close one form and open another one in the application, what commands should I use?

Thanks.

<{POST_SNAPBACK}>

Hello

First I want to give you a tip about the Mobile Application Development Toolkit. There you should find hands-on-labs, technical articles etc. Whatever you need to get starting developing on the Windows Mobile platform.

When I navigate through forms I like to use ShowDialog(). This means that you have to extend the form a bit, before it's useful.

Look at the code in the attachment.

GOEran 8)

SmartDeviceApplication1.zip

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.