Jump to content

portrait to landscape


Guest starclassic

Recommended Posts

is there any programs that would let me toggle between portrait and landscape without sliding the keyboard in and out?

btw, it's really easy to write such software ;)

with SharpDevelop U can do it in 1 minute...

using vb it will be sth like

Imports Microsoft.WindowsCE.Forms

Public Partial Class MainForm

shared Sub Main()

If SystemSettings.ScreenOrientation = ScreenOrientation.Angle90 then

SystemSettings.ScreenOrientation = ScreenOrientation.Angle0

Else

SystemSettings.ScreenOrientation = ScreenOrientation.Angle90

end if

End Sub

End Class

it's compact framework - but on TYTNII it's still pretty fast :( What is important - even with minimal skills U can choose what will happen - for example i prefer 90 landscape than 270 landscape like in HTC defalut screen rotation program...

Edited by Qlphn
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.