Click here to Skip to main content
15,903,175 members
Home / Discussions / Mobile
   

Mobile

 
GeneralPlease help, Internal Server Error 500 on ASP.Net Mobile Pin
irwansyah5-Apr-04 21:35
irwansyah5-Apr-04 21:35 
Generalmobile svg Pin
yvonneitt5-Apr-04 4:43
yvonneitt5-Apr-04 4:43 
Questionhow to convert from CTime to CString HELP Pin
rodneyk12-Apr-04 4:28
rodneyk12-Apr-04 4:28 
AnswerRe: how to convert from CTime to CString HELP Pin
João Paulo Figueira2-Apr-04 4:54
professionalJoão Paulo Figueira2-Apr-04 4:54 
GeneralHelp !!! Problem in calling webservice from PocketPC Pin
Anonymous31-Mar-04 23:21
Anonymous31-Mar-04 23:21 
QuestionQuick Question... Internet? Pin
Anonymous31-Mar-04 12:56
Anonymous31-Mar-04 12:56 
Questionhow to go from CString to char [] Pin
rodneyk131-Mar-04 10:27
rodneyk131-Mar-04 10:27 
AnswerRe: how to go from CString to char [] Pin
Daniel Strigl31-Mar-04 19:43
Daniel Strigl31-Mar-04 19:43 
Take a look at Strings on Pocket PC, Unicode and ANSI.
char* GetAnsiString(const CString &s, UINT nCodePage) 
{
 int nSize = s.GetLength();
 char *pAnsiString = new char[nSize+1];
 
 WideCharToMultiByte(nCodePage, 0, s, nSize+1, pAnsiString, nSize+1, NULL, NULL);
 return pAnsiString;
}
 
CString strUnicode = _T("Some test string");
char *pAnsiString = GetAnsiString(strUnicode, CP_ACP);


Regards,
Daniel.
--
FIND A JOB YOU LOVE, AND YOU'LL NEVER HAVE TO WORK A DAY OF YOUR LIFE. Wink | ;)
GeneralRe: how to go from CString to char [] Pin
rodneyk12-Apr-04 4:31
rodneyk12-Apr-04 4:31 
GeneralRe: how to go from CString to char [] Pin
Daniel Strigl2-Apr-04 19:03
Daniel Strigl2-Apr-04 19:03 
Generalprinting to a text file...HELP PLEASE Pin
rodneyk131-Mar-04 8:51
rodneyk131-Mar-04 8:51 
GeneralRe: printing to a text file...HELP PLEASE Pin
Jonas Larsson6-Apr-04 3:40
Jonas Larsson6-Apr-04 3:40 
GeneralNewbie Looking for Help Pin
tracymc31-Mar-04 8:17
tracymc31-Mar-04 8:17 
GeneralRe: Newbie Looking for Help Pin
João Paulo Figueira31-Mar-04 22:05
professionalJoão Paulo Figueira31-Mar-04 22:05 
GeneralShell execute vs. Create Process Pin
RB@Emphasys31-Mar-04 8:02
RB@Emphasys31-Mar-04 8:02 
GeneralRe: Shell execute vs. Create Process Pin
Daniel Strigl31-Mar-04 19:40
Daniel Strigl31-Mar-04 19:40 
Generalaccess PocketPC files from PC Pin
badzio31-Mar-04 2:09
badzio31-Mar-04 2:09 
GeneralRe: access PocketPC files from PC Pin
João Paulo Figueira31-Mar-04 3:40
professionalJoão Paulo Figueira31-Mar-04 3:40 
GeneralADO Sample Pin
arlevand30-Mar-04 21:51
arlevand30-Mar-04 21:51 
GeneralRe: ADO Sample Pin
João Paulo Figueira31-Mar-04 0:19
professionalJoão Paulo Figueira31-Mar-04 0:19 
GeneralBluetooth connection...... Pin
Deepa Gopal29-Mar-04 20:36
Deepa Gopal29-Mar-04 20:36 
GeneralProblem with Virtual List View Pin
Bui Huy Kien29-Mar-04 18:06
Bui Huy Kien29-Mar-04 18:06 
GeneralRe: Problem with Virtual List View Pin
Daniel Strigl29-Mar-04 19:00
Daniel Strigl29-Mar-04 19:00 
GeneralRe: Problem with Virtual List View Pin
João Paulo Figueira29-Mar-04 21:04
professionalJoão Paulo Figueira29-Mar-04 21:04 
GeneralRe: Problem with Virtual List View Pin
Bui Huy Kien29-Mar-04 22:17
Bui Huy Kien29-Mar-04 22:17 

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.