Guest starclassic Posted November 7, 2007 Report Share Posted November 7, 2007 is there any programs that would let me toggle between portrait and landscape without sliding the keyboard in and out? Link to comment Share on other sites More sharing options...
Guest hotphil Posted November 7, 2007 Report Share Posted November 7, 2007 If you've got the HTC Home plugin, it has a button to do just that. Link to comment Share on other sites More sharing options...
Guest johniain Posted November 7, 2007 Report Share Posted November 7, 2007 This may help http://www.modaco.com/content/HTC-Vox-Vox-...-keyboard-open/ J Link to comment Share on other sites More sharing options...
Guest Phil Lee Posted November 7, 2007 Report Share Posted November 7, 2007 (edited) I have assigned to a short press of the Voice Dial button using the Buttons control panel applet. Edited November 7, 2007 by Phil Lee Link to comment Share on other sites More sharing options...
Guest Qlphn Posted November 9, 2007 Report Share Posted November 9, 2007 (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 November 9, 2007 by Qlphn Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now