FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Pocket PC How to rotate the screen dynamically on Windows Mobile 2003
Posts: 172
Joined: Fri Oct 07, 2005 12:00 PM
How to rotate the screen dynamically on Windows Mobile 2003
Posted: Wed Jan 03, 2007 05:10 PM
hello

The answer is in this link:

http://www.pocketpcdn.com/articles/rotatese.html

I have not try it but I find it interesting.

A greeting.

Paco

Articles at Pocket PC Developer Network
http://www.pocketpcdn.com/sections/ui.html
Posts: 842
Joined: Mon Oct 10, 2005 01:29 PM
How to rotate the screen dynamically on Windows Mobile 2003
Posted: Thu Jan 04, 2007 08:12 AM

look at LANDSCAP.PRG

function ChangeVideo( oBtn )

if oBtn:GetText() == "Landscape"
LandScape()
oBtn:SetText( "Portrait" )
else
Portrait()
oBtn:SetText( "Landscape" )
endif

return nil

//----------------------------------------------------------------------------//

Posts: 172
Joined: Fri Oct 07, 2005 12:00 PM
How to rotate the screen dynamically on Windows Mobile 2003
Posted: Thu Jan 04, 2007 11:16 AM

Yes all right.

I think that the second link is the more interesting.

A greeting

Continue the discussion