Click here to Skip to main content
15,896,730 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionMFC Child window,is not visible Pin
sepehr_vision19-Sep-06 4:02
sepehr_vision19-Sep-06 4:02 
AnswerRe: MFC Child window,is not visible Pin
Jun Du19-Sep-06 5:27
Jun Du19-Sep-06 5:27 
AnswerRe: MFC Child window,is not visible Pin
tanvon malik19-Sep-06 5:39
tanvon malik19-Sep-06 5:39 
Questionproblem with CString Pin
zizzzz19-Sep-06 3:40
zizzzz19-Sep-06 3:40 
AnswerRe: problem with CString Pin
Cedric Moonen19-Sep-06 3:49
Cedric Moonen19-Sep-06 3:49 
GeneralRe: problem with CString Pin
zizzzz19-Sep-06 3:58
zizzzz19-Sep-06 3:58 
AnswerRe: problem with CString Pin
Naveen19-Sep-06 3:51
Naveen19-Sep-06 3:51 
GeneralRe: problem with CString Pin
Zac Howland19-Sep-06 3:57
Zac Howland19-Sep-06 3:57 
Naveen R wrote:
switch(rvalue[0])// this will conside only the first character in the variable rvalue
{
case "0": AfxMessageBox("Communication error");
break;
case "Z":AfxMessageBox("Sucess");
break;
default : AfxMessageBox("rien");}
}


I think you meant:

switch(rvalue[0])// this will conside only the first character in the variable rvalue
{
case '0': AfxMessageBox("Communication error");
break;
case 'Z':AfxMessageBox("Sucess");
break;
default : AfxMessageBox("rien");}
}


If you decide to become a software engineer, you are signing up to have a 1/2" piece of silicon tell you exactly how stupid you really are for 8 hours a day, 5 days a week

Zac

GeneralRe: problem with CString Pin
Naveen19-Sep-06 3:59
Naveen19-Sep-06 3:59 
AnswerRe: problem with CString Pin
Zac Howland19-Sep-06 3:56
Zac Howland19-Sep-06 3:56 
AnswerRe: problem with CString Pin
Jun Du19-Sep-06 4:01
Jun Du19-Sep-06 4:01 
GeneralRe: problem with CString Pin
Cedric Moonen19-Sep-06 4:05
Cedric Moonen19-Sep-06 4:05 
GeneralRe: problem with CString Pin
Zac Howland19-Sep-06 4:09
Zac Howland19-Sep-06 4:09 
GeneralRe: problem with CString Pin
Jun Du19-Sep-06 4:36
Jun Du19-Sep-06 4:36 
GeneralRe: problem with CString Pin
zizzzz19-Sep-06 4:48
zizzzz19-Sep-06 4:48 
GeneralRe: problem with CString Pin
Jun Du19-Sep-06 4:52
Jun Du19-Sep-06 4:52 
GeneralRe: problem with CString Pin
Zac Howland19-Sep-06 4:57
Zac Howland19-Sep-06 4:57 
GeneralRe: problem with CString Pin
David Crow19-Sep-06 7:17
David Crow19-Sep-06 7:17 
GeneralRe: problem with CString Pin
Zac Howland19-Sep-06 8:17
Zac Howland19-Sep-06 8:17 
GeneralRe: problem with CString Pin
PJ Arends19-Sep-06 9:06
professionalPJ Arends19-Sep-06 9:06 
AnswerRe: problem with CString Pin
David Crow19-Sep-06 4:56
David Crow19-Sep-06 4:56 
AnswerRe: problem with CString Pin
Trollslayer19-Sep-06 5:57
mentorTrollslayer19-Sep-06 5:57 
QuestionRe: problem with CString Pin
David Crow19-Sep-06 7:22
David Crow19-Sep-06 7:22 
Questionhow to get window content , when window is invisible Pin
astabasta19-Sep-06 3:19
astabasta19-Sep-06 3:19 
AnswerRe: how to get window content , when window is invisible Pin
Naveen19-Sep-06 3:26
Naveen19-Sep-06 3:26 

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.