newlc.com
Articles Only
Forum Only
Community
World-Wide Web
Home
News
Tutorials
Reviews
Downloads
Professional Services
Forums
Newsletter
Blog
About us
Last forum posts
Home
::
Forums
::
Development
::
Symbian C++
User login
Username:
*
Password:
*
Create new account
Request new password
Featured pages
Configure your PC for Symbian development
Getting started with Symbian development
Symbian OS Error Codes
Common products UIDs
Nokia S60 SDK
Featured Software
NlMakesis
Y-Browser
Y-Tasks
Active users (last 30 days)
User
Score
Andreas
52
eric
46
rbrunner
42
alh
40
Bones
26
more
Feeds
More feeds...
Flip Close environment
Login
to reply to this topic.
Fri, 2005-04-01 06:34
cmc100
Joined: 2004-08-25
Forum posts: 32
Hi all,
Does anyone know how to make a symbian program to work even when the flip keyboard of P900/P910i is closed? I really have no idea on that. Thank you very much.
Thanks,
Vincent
Login
or
register
to post in forums
Fri, 2005-04-01 06:40
Core_RUS_
Joined: 2004-12-03
Forum posts: 192
Flip Close environment
Code:
TScreenMode screenMode = CEikonEnv::Static()->ScreenDevice()->CurrentScreenMode() == 0
? EScreenModeFlipOpen
: EScreenModeFlipClosed;
if (screenMode == EScreenModeFlipClosed)
...
something like this?
 
Fri, 2005-04-01 10:58
cmc100
Joined: 2004-08-25
Forum posts: 32
Flip Close environment
Hi,
But how can I initialise my app in the flip close mode? Since I can't see my app when the flip is close.
Thanks,
Vincent
 
Login
to reply to this topic.
Forum posts: 192
? EScreenModeFlipOpen
: EScreenModeFlipClosed;
if (screenMode == EScreenModeFlipClosed)
...
something like this?
Forum posts: 32
But how can I initialise my app in the flip close mode? Since I can't see my app when the flip is close.
Thanks,
Vincent