Jump to content

portrait to landscape


Recommended Posts

Guest starclassic
Posted

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

Guest hotphil
Posted

If you've got the HTC Home plugin, it has a button to do just that.

Guest Phil Lee
Posted (edited)

I have assigned to a short press of the Voice Dial button using the Buttons control panel applet.

Edited by Phil Lee
Posted (edited)
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

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.