Jump to content

Recommended Posts

Guest alhabibam
Posted

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.

Guest sharpstuff
Posted (edited)
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
Guest GOEran
Posted
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

Guest GOEran
Posted
Thank you alot.

That was helpful.

<{POST_SNAPBACK}>

No problem 8)

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.