Click here to Skip to main content
15,890,690 members
Home / Discussions / Mobile
   

Mobile

 
QuestionNeed to control backlight and suspend in windows mobile 5 Pin
rstevens@bsxchange.com14-Jul-07 14:29
rstevens@bsxchange.com14-Jul-07 14:29 
Generalsymbian s60 Pin
ali_reza_zareian13-Jul-07 18:11
ali_reza_zareian13-Jul-07 18:11 
GeneralRe: symbian s60 Pin
Sathesh Sakthivel13-Jul-07 18:27
Sathesh Sakthivel13-Jul-07 18:27 
GeneralRe: symbian s60 Pin
ali_reza_zareian13-Jul-07 23:52
ali_reza_zareian13-Jul-07 23:52 
GeneralRe: symbian s60 Pin
Chandrasekharan P18-Jul-07 0:45
Chandrasekharan P18-Jul-07 0:45 
QuestionHow to move a non-caption window under WinCE ? Pin
shuaicarr13-Jul-07 17:00
shuaicarr13-Jul-07 17:00 
AnswerRe: How to move a non-caption window under WinCE ? Pin
Alain Rist13-Jul-07 20:36
Alain Rist13-Jul-07 20:36 
QuestionHow to hide a modal dialog application window on startup on WinCE? Pin
FipS!13-Jul-07 1:14
FipS!13-Jul-07 1:14 
Hi,

I'm working on a simple application which consists of a single modal dialog window only. I want the dialog to be hidden on startup. As you perhaps know there are some difficulties with this... The solution on 'big' Windows could be to filter out the first 'SWP_SHOWWINDOW' request which is being automatically sent after 'WM_INITDIALOG'

So in response to 'WM_WINDOWPOSCHANGING' you can do something like this:
WINDOWPOS* pWP = (WINDOWPOS*)lParam;
if((pWP->flags & SWP_SHOWWINDOW) && m_bFirstTimeShow)
{
    pWP->flags &= ~SWP_SHOWWINDOW;
    m_bFirstTimeShow = false;
}

My question is: How can I achieve the same effect of WinCE? It seems that even 'WINDOWPOSCHANGING' is not being sent on WinCE?? I use WTL, but it seems to be a general issue. Any suggestion??

Cheers,
FipS
______________________________________________
+++ Filip STOKLAS (FipS), http://HOLE.4FipS.com
AnswerRe: How to hide a modal dialog application window on startup on WinCE? Pin
Alain Rist13-Jul-07 20:23
Alain Rist13-Jul-07 20:23 
GeneralRe: How to hide a modal dialog application window on startup on WinCE? Pin
FipS!16-Jul-07 0:08
FipS!16-Jul-07 0:08 
GeneralRe: How to hide a modal dialog application window on startup on WinCE? Pin
Alain Rist16-Jul-07 1:04
Alain Rist16-Jul-07 1:04 
GeneralRe: How to hide a modal dialog application window on startup on WinCE? Pin
FipS!16-Jul-07 1:38
FipS!16-Jul-07 1:38 
AnswerRe: How to hide a modal dialog application window on startup on WinCE? Pin
Alain Rist16-Jul-07 2:04
Alain Rist16-Jul-07 2:04 
GeneralRe: How to hide a modal dialog application window on startup on WinCE? Pin
ghle20-Aug-07 5:18
ghle20-Aug-07 5:18 
Questionprint Pin
SVb.net12-Jul-07 12:18
SVb.net12-Jul-07 12:18 
AnswerRe: print Pin
ghle20-Aug-07 5:41
ghle20-Aug-07 5:41 
QuestionMobile device to web service and storage Pin
Peterixina12-Jul-07 4:34
Peterixina12-Jul-07 4:34 
QuestionWINDOWS MOBILE DEVICE NETWORK MANAGEMENT Pin
zafax_11-Jul-07 2:50
zafax_11-Jul-07 2:50 
GeneralRe: WINDOWS MOBILE DEVICE NETWORK MANAGEMENT Pin
tuga-x12-Jul-07 1:15
tuga-x12-Jul-07 1:15 
GeneralRe: WINDOWS MOBILE DEVICE NETWORK MANAGEMENT Pin
zafax_12-Jul-07 2:46
zafax_12-Jul-07 2:46 
GeneralRe: WINDOWS MOBILE DEVICE NETWORK MANAGEMENT Pin
tuga-x12-Jul-07 3:09
tuga-x12-Jul-07 3:09 
GeneralRe: WINDOWS MOBILE DEVICE NETWORK MANAGEMENT Pin
zafax_12-Jul-07 3:19
zafax_12-Jul-07 3:19 
AnswerRe: WINDOWS MOBILE DEVICE NETWORK MANAGEMENT Pin
Mike Dimmick12-Jul-07 3:02
Mike Dimmick12-Jul-07 3:02 
GeneralRe: WINDOWS MOBILE DEVICE NETWORK MANAGEMENT Pin
zafax_12-Jul-07 3:12
zafax_12-Jul-07 3:12 
QuestionMobile development Pin
Pamela198410-Jul-07 23:47
Pamela198410-Jul-07 23:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.