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

C / C++ / MFC

 
GeneralRe: Help Pin
Mazdak28-Feb-02 3:14
Mazdak28-Feb-02 3:14 
GeneralRe: Help Pin
Carlos Antollini28-Feb-02 3:12
Carlos Antollini28-Feb-02 3:12 
GeneralProject Name Pin
Rajveer28-Feb-02 2:35
Rajveer28-Feb-02 2:35 
GeneralRe: Project Name Pin
Carlos Antollini28-Feb-02 2:45
Carlos Antollini28-Feb-02 2:45 
GeneralRe: Project Name Pin
Steen Krogsgaard28-Feb-02 9:53
Steen Krogsgaard28-Feb-02 9:53 
Generalwin32 debug/release Pin
Rajveer28-Feb-02 2:33
Rajveer28-Feb-02 2:33 
GeneralRe: win32 debug/release Pin
Joaquín M López Muñoz28-Feb-02 2:49
Joaquín M López Muñoz28-Feb-02 2:49 
GeneralASSERT/VERIFY Pin
Ravi Bhavnani28-Feb-02 3:02
professionalRavi Bhavnani28-Feb-02 3:02 
Joaquín's reply explains the differences between Debug and Release mode very well. I'd just add that if you execute code (that must run in release mode) using ASSERT, you should change it to VERIFY. Eg:

ASSERT (x > 0);
ASSERT (myFunction (x) == SUCCESS);
should be

ASSERT (x > 0);
VERIFY (myFunction() == SUCCESS);
/ravi

"There is always one more bug..."
http://www.ravib.com
ravib@ravib.com
GeneralDial-up connection Pin
Mauricio Ritter28-Feb-02 2:22
Mauricio Ritter28-Feb-02 2:22 
GeneralRe: Dial-up connection Pin
Joaquín M López Muñoz28-Feb-02 2:42
Joaquín M López Muñoz28-Feb-02 2:42 
GeneralVisual Styles API Pin
Konstantin S. Diguine28-Feb-02 2:07
Konstantin S. Diguine28-Feb-02 2:07 
GeneralRe: Visual Styles API Pin
Ravi Bhavnani28-Feb-02 2:29
professionalRavi Bhavnani28-Feb-02 2:29 
GeneralRe: Visual Styles API Pin
Konstantin S. Diguine28-Feb-02 2:47
Konstantin S. Diguine28-Feb-02 2:47 
GeneralRe: Visual Styles API Pin
Ravi Bhavnani28-Feb-02 2:54
professionalRavi Bhavnani28-Feb-02 2:54 
GeneralCreate .mak File Pin
28-Feb-02 1:26
suss28-Feb-02 1:26 
GeneralRe: Create .mak File Pin
Joaquín M López Muñoz28-Feb-02 2:55
Joaquín M López Muñoz28-Feb-02 2:55 
GeneralQuestion about AddIns for Visual Pin
Nokia.pl28-Feb-02 0:40
Nokia.pl28-Feb-02 0:40 
GeneralRe: Question about AddIns for Visual Pin
Gavin Jerman28-Feb-02 1:18
Gavin Jerman28-Feb-02 1:18 
GeneralIs there a way to get IActiveScript*** Pin
Brian V Shifrin27-Feb-02 23:58
Brian V Shifrin27-Feb-02 23:58 
QuestionHow do u find bugs in MFC programs? Pin
John Cruz27-Feb-02 23:31
John Cruz27-Feb-02 23:31 
AnswerRe: How do u find bugs in MFC programs? Pin
Nish Nishant27-Feb-02 23:50
sitebuilderNish Nishant27-Feb-02 23:50 
AnswerRe: How do u find bugs in MFC programs? Pin
Mukkie28-Feb-02 11:29
Mukkie28-Feb-02 11:29 
GeneralRe: How do u find bugs in MFC programs? Pin
Tim Smith28-Feb-02 11:51
Tim Smith28-Feb-02 11:51 
Generalfocusing problem on windows 2000 Pin
27-Feb-02 22:29
suss27-Feb-02 22:29 
GeneralRe: focusing problem on windows 2000 Pin
Nish Nishant27-Feb-02 23:48
sitebuilderNish Nishant27-Feb-02 23:48 

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.