Page 1 of 1

How to rotate the screen dynamically on Windows Mobile 2003

Posted: Wed Jan 03, 2007 5:10 pm
by Paco Garcia
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

Posted: Thu Jan 04, 2007 8:12 am
by Maurizio
look at LANDSCAP.PRG

function ChangeVideo( oBtn )

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

return nil

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

Posted: Thu Jan 04, 2007 11:16 am
by Paco Garcia
Yes all right.

I think that the second link is the more interesting.

A greeting