Is it possible to create a form in a horizontal view? I can rotate the phone in VS2008 but it doesnt come out that way.
Thanks!
Printable View
Is it possible to create a form in a horizontal view? I can rotate the phone in VS2008 but it doesnt come out that way.
Thanks!
You can right-click on the phone and rotate the form in VS2008.
Do you mean how do you show it like that in your application?
If so, add a reference to Microsoft.WindowsCE.Forms to your project, an 'Imports Microsoft.WindowsCE.Forms' and then
SystemSettings.ScreenOrientation = ScreenOrientation.Angle90 or similar
Exactly what i needed! thanks again!