Click here to Skip to main content
16,004,927 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: copy files/folder Pin
David Crow28-Aug-08 2:34
David Crow28-Aug-08 2:34 
AnswerRe: copy files/folder Pin
MsmVc28-Aug-08 2:37
MsmVc28-Aug-08 2:37 
QuestionRe: copy files/folder Pin
David Crow28-Aug-08 3:32
David Crow28-Aug-08 3:32 
QuestionSize of Dialog Box ! Pin
Le@rner27-Aug-08 22:19
Le@rner27-Aug-08 22:19 
AnswerRe: Size of Dialog Box ! Pin
SandipG 27-Aug-08 22:22
SandipG 27-Aug-08 22:22 
AnswerRe: Size of Dialog Box ! Pin
Dhiraj kumar Saini28-Aug-08 0:00
Dhiraj kumar Saini28-Aug-08 0:00 
QuestionCStdioFile::ReadString can't read the symbol '℃' correctly [modified] Pin
followait27-Aug-08 22:11
followait27-Aug-08 22:11 
AnswerRe: CStdioFile::ReadString can't read the symbol '℃' correctly Pin
sashoalm28-Aug-08 0:13
sashoalm28-Aug-08 0:13 
Will that help? This is code for converting MBCS to Unicode, from http://msdn.microsoft.com/en-us/library/805c56f8.aspx[^]



// we want to convert an MBCS string in lpszA
int nLen = MultiByteToWideChar(CP_ACP, 0,lpszA, -1, NULL, NULL);
LPWSTR lpszW = new WCHAR[nLen];
MultiByteToWideChar(CP_ACP, 0, 
   lpszA, -1, lpszW, nLen);
// use it to call OLE here
pI->SomeFunctionThatNeedsUnicode(lpszW);
// free the string
delete[] lpszW;


There is sufficient light for those who desire to see, and there is sufficient darkness for those of a contrary disposition.
Blaise Pascal

QuestionError on MFC Class Wizard Pin
AlProb27-Aug-08 22:02
AlProb27-Aug-08 22:02 
AnswerRe: Error on MFC Class Wizard Pin
followait27-Aug-08 22:16
followait27-Aug-08 22:16 
AnswerRe: Error on MFC Class Wizard Pin
SandipG 27-Aug-08 22:18
SandipG 27-Aug-08 22:18 
GeneralRe: Error on MFC Class Wizard Pin
AlProb27-Aug-08 22:26
AlProb27-Aug-08 22:26 
GeneralRe: Error on MFC Class Wizard Pin
SandipG 27-Aug-08 22:32
SandipG 27-Aug-08 22:32 
GeneralRe: Error on MFC Class Wizard Pin
AlProb27-Aug-08 22:41
AlProb27-Aug-08 22:41 
GeneralRe: Error on MFC Class Wizard Pin
SandipG 27-Aug-08 23:02
SandipG 27-Aug-08 23:02 
GeneralRe: Error on MFC Class Wizard Pin
AlProb27-Aug-08 23:11
AlProb27-Aug-08 23:11 
GeneralRe: Error on MFC Class Wizard Pin
SandipG 27-Aug-08 23:24
SandipG 27-Aug-08 23:24 
GeneralRe: Error on MFC Class Wizard Pin
followait29-Aug-08 16:23
followait29-Aug-08 16:23 
AnswerRe: Error on MFC Class Wizard Pin
Jijo.Raj27-Aug-08 22:22
Jijo.Raj27-Aug-08 22:22 
AnswerRe: Error on MFC Class Wizard Pin
onlyjaypatel27-Aug-08 23:40
onlyjaypatel27-Aug-08 23:40 
AnswerRe: Error on MFC Class Wizard Pin
AlProb28-Aug-08 0:47
AlProb28-Aug-08 0:47 
QuestionNeed your help Pin
nisha0000027-Aug-08 21:30
nisha0000027-Aug-08 21:30 
AnswerRe: Need your help Pin
laksh220427-Aug-08 21:41
laksh220427-Aug-08 21:41 
AnswerRe: Need your help Pin
super_ttd27-Aug-08 22:38
super_ttd27-Aug-08 22:38 
QuestionRe: Need your help Pin
Rathore Amit27-Aug-08 23:04
Rathore Amit27-Aug-08 23:04 

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.