Click here to Skip to main content
15,892,005 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: isolate differents parts of the string Pin
Roger Stoltz6-Mar-06 5:01
Roger Stoltz6-Mar-06 5:01 
GeneralRe: isolate differents parts of the string Pin
SWDevil6-Mar-06 5:04
SWDevil6-Mar-06 5:04 
GeneralRe: isolate differents parts of the string Pin
David Crow6-Mar-06 5:41
David Crow6-Mar-06 5:41 
AnswerRe: isolate differents parts of the string Pin
James R. Twine6-Mar-06 5:15
James R. Twine6-Mar-06 5:15 
QuestionEvents disappearing Pin
RichardS6-Mar-06 4:13
RichardS6-Mar-06 4:13 
AnswerRe: Events disappearing Pin
Blake Miller6-Mar-06 5:48
Blake Miller6-Mar-06 5:48 
GeneralRe: Events disappearing Pin
RichardS6-Mar-06 6:19
RichardS6-Mar-06 6:19 
Questionerror handle Pin
derek76-Mar-06 3:59
derek76-Mar-06 3:59 
if a error occur in a function ,return false or handle it inside of function.

for example:

void fun()
{
bool isFail = openfile(...);
if(isFail)
{
::MessageBox(0,"open file fail",0,0);
exit(0);
}
}



bool fun()
{
bool isFail = openfile(...);
if(isFail)
{
return false;
}
........
return true;
}

AnswerRe: error handle Pin
toxcct6-Mar-06 4:11
toxcct6-Mar-06 4:11 
GeneralRe: error handle Pin
derek76-Mar-06 13:36
derek76-Mar-06 13:36 
QuestionHow can I destroy the video window? Pin
Shuang. Wu6-Mar-06 3:38
Shuang. Wu6-Mar-06 3:38 
QuestionHELP: Visual C++ 6.0 to Visual Studio.NET 2003 woes...... Pin
kevingpo6-Mar-06 3:02
kevingpo6-Mar-06 3:02 
AnswerRe: HELP: Visual C++ 6.0 to Visual Studio.NET 2003 woes...... Pin
kevingpo6-Mar-06 3:54
kevingpo6-Mar-06 3:54 
GeneralRe: HELP: Visual C++ 6.0 to Visual Studio.NET 2003 woes...... Pin
kevingpo6-Mar-06 5:54
kevingpo6-Mar-06 5:54 
QuestionStart-up Window Pin
BlitzPackage6-Mar-06 2:42
BlitzPackage6-Mar-06 2:42 
AnswerRe: Start-up Window Pin
David Crow6-Mar-06 2:46
David Crow6-Mar-06 2:46 
GeneralRe: Start-up Window Pin
BlitzPackage6-Mar-06 6:55
BlitzPackage6-Mar-06 6:55 
AnswerRe: Start-up Window Pin
toxcct6-Mar-06 2:46
toxcct6-Mar-06 2:46 
GeneralRe: Start-up Window Pin
BlitzPackage6-Mar-06 6:56
BlitzPackage6-Mar-06 6:56 
QuestionChanging the color of the controls Pin
Aryan S6-Mar-06 2:36
Aryan S6-Mar-06 2:36 
AnswerRe: Changing the color of the controls Pin
David Crow6-Mar-06 2:38
David Crow6-Mar-06 2:38 
AnswerRe: Changing the color of the controls Pin
Michael Dunn6-Mar-06 4:45
sitebuilderMichael Dunn6-Mar-06 4:45 
Questionhow to find which lib is a function in? Pin
derek76-Mar-06 1:52
derek76-Mar-06 1:52 
AnswerRe: how to find which lib is a function in? Pin
toxcct6-Mar-06 2:01
toxcct6-Mar-06 2:01 
GeneralRe: how to find which lib is a function in? Pin
derek76-Mar-06 2:49
derek76-Mar-06 2:49 

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.