Guest alhabibam Posted April 13, 2005 Report Posted April 13, 2005 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 April 15, 2005 Report Posted April 15, 2005 (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 April 15, 2005 by sharpstuff
Guest GOEran Posted April 16, 2005 Report Posted April 16, 2005 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 April 20, 2005 Report Posted April 20, 2005 Thank you alot. That was helpful. <{POST_SNAPBACK}> No problem 8)
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now