Click here to Skip to main content
15,893,161 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionCatch program termination Pin
status()11-Oct-05 5:56
status()11-Oct-05 5:56 
QuestionConnect to Registry Pin
Mila02511-Oct-05 4:06
Mila02511-Oct-05 4:06 
AnswerRe: Connect to Registry Pin
RadioOpa11-Oct-05 4:35
RadioOpa11-Oct-05 4:35 
AnswerRe: Connect to Registry Pin
Roger Stoltz11-Oct-05 5:05
Roger Stoltz11-Oct-05 5:05 
QuestionUnicode presentation CEdit Pin
RadioOpa11-Oct-05 2:59
RadioOpa11-Oct-05 2:59 
AnswerRe: Unicode presentation CEdit Pin
RadioOpa11-Oct-05 21:17
RadioOpa11-Oct-05 21:17 
QuestionMultiByteToWideCHar Help? Pin
Amit j Patil11-Oct-05 2:35
Amit j Patil11-Oct-05 2:35 
AnswerRe: MultiByteToWideCHar Help? Pin
nm_11411-Oct-05 11:30
nm_11411-Oct-05 11:30 
try something like:
char * chr="hello";
WCHAR str[255];
int nLen = MultiByteToWideChar(CP_ACP, 0,chr, -1, str, 255);

-- or --
char * chr="hello";
WCHAR * str;
int nLen = MultiByteToWideChar(CP_ACP, 0,chr, -1, NULL, 0);
str = new WCHAR[nLen];
MultiByteToWideChar(CP_ACP, 0,chr, -1, str, nLen);
//use str...
delete[] str;

GeneralRe: MultiByteToWideCHar Help? Pin
Amit j Patil12-Oct-05 21:05
Amit j Patil12-Oct-05 21:05 
QuestionPossible CDC issue Pin
wdhough11-Oct-05 1:43
wdhough11-Oct-05 1:43 
QuestionDiff between CFile and CStdioFile Pin
karmendra_js11-Oct-05 1:35
karmendra_js11-Oct-05 1:35 
AnswerRe: Diff between CFile and CStdioFile Pin
ThatsAlok11-Oct-05 1:46
ThatsAlok11-Oct-05 1:46 
AnswerRe: Diff between CFile and CStdioFile Pin
Roger Stoltz11-Oct-05 1:54
Roger Stoltz11-Oct-05 1:54 
QuestionConvert bmp to Text Pin
sonu25211-Oct-05 0:39
sonu25211-Oct-05 0:39 
AnswerRe: Convert bmp to Text Pin
Roger Stoltz11-Oct-05 1:30
Roger Stoltz11-Oct-05 1:30 
QuestionRepeated calling of a function Pin
nripun11-Oct-05 0:30
nripun11-Oct-05 0:30 
AnswerRe: Repeated calling of a function Pin
dharani11-Oct-05 0:46
dharani11-Oct-05 0:46 
GeneralRe: Repeated calling of a function Pin
sonu25211-Oct-05 1:14
sonu25211-Oct-05 1:14 
GeneralRe: Repeated calling of a function Pin
ky_rerun11-Oct-05 7:51
ky_rerun11-Oct-05 7:51 
AnswerRe: Repeated calling of a function Pin
Bob Stanneveld11-Oct-05 1:53
Bob Stanneveld11-Oct-05 1:53 
AnswerRe: Repeated calling of a function Pin
Tim Smith11-Oct-05 3:58
Tim Smith11-Oct-05 3:58 
GeneralRe: Repeated calling of a function Pin
Trollslayer11-Oct-05 4:45
mentorTrollslayer11-Oct-05 4:45 
GeneralRe: Repeated calling of a function Pin
nripun11-Oct-05 9:14
nripun11-Oct-05 9:14 
GeneralRe: Repeated calling of a function Pin
PJ Arends11-Oct-05 15:45
professionalPJ Arends11-Oct-05 15:45 
GeneralRe: Repeated calling of a function Pin
Roger Stoltz11-Oct-05 21:32
Roger Stoltz11-Oct-05 21:32 

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.