Archive for September 2009
14
INVOKING KEYBOARD PANEL
0 Comments | Posted by Salim Javed - Microsoft Certified Technology Specialist in Windows CE
Simple method to invoke the software keyboard panel when edit box or other controls clicked
(i)BOOL SHInitExtraControls(void);
The above function has to be called before creating the dialog box, in which we need to invoke the software input panel. Call this only once.
(ii)#define WC_SIPPREF L”SIPPREF”
Declare the above definition in resource file
(iii) CONTROLÂ “”,-1,WC_SIPPREF, NOT WS_VISIBLE,-10,-10,5,5
This has to [...]
4
Achieving a fully functional Webserver in Windows CE
0 Comments | Posted by Suresh Madhu - Microsoft Certified Technology Specialist in Windows CE
When you implement a web server on Windows CE, developers would want to implement most of the features available with web servers on PC platforms.
However, this is not the case if the windows CE IIS doesn’t support some of the features like maintaining the session ID etc. Also, you would want to get some [...]
