Click here to Skip to main content
15,891,431 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Define character pointer Pin
Beer17-May-03 12:14
Beer17-May-03 12:14 
GeneralRe: Define character pointer Pin
Christian Graus17-May-03 12:18
protectorChristian Graus17-May-03 12:18 
GeneralRe: Define character pointer Pin
Mazdak17-May-03 22:29
Mazdak17-May-03 22:29 
GeneralRe: Define character pointer Pin
Beer18-May-03 5:10
Beer18-May-03 5:10 
GeneralRe: Define character pointer Pin
Toni7817-May-03 16:39
Toni7817-May-03 16:39 
QuestionDebugbuild OK! Release build CRASHES! WHY? Pin
Michael Pauli17-May-03 7:08
Michael Pauli17-May-03 7:08 
AnswerRe: Debugbuild OK! Release build CRASHES! WHY? Pin
Andres Manggini17-May-03 8:09
Andres Manggini17-May-03 8:09 
AnswerRe: Debugbuild OK! Release build CRASHES! WHY? Pin
Ralph Varjabedian17-May-03 8:43
Ralph Varjabedian17-May-03 8:43 
Pay Good attention to code that is written in ASSERT statments (or any code/macro that is excuted in debug builds only). This code is only called in Debug Versions. For example if you have something like this

CWnd *pWnd = NULL;
ASSERT(pWnd = GetDlgItem(ID_ANYTHING));
pWnd->ShowWindow(SW_HIDE);

This code will crash under release but will work under debug Wink | ;)

Change the ASSERT into VERIFY.

Ralph Varjabedian
Software Engineer
AnswerRe: Debugbuild OK! Release build CRASHES! WHY? Pin
Neville Franks17-May-03 12:07
Neville Franks17-May-03 12:07 
AnswerRe: Debugbuild OK! Release build CRASHES! WHY? Pin
JT Anderson19-May-03 4:55
JT Anderson19-May-03 4:55 
GeneralRe: Debugbuild OK! Release build CRASHES! WHY? Pin
Michael Pauli19-May-03 5:12
Michael Pauli19-May-03 5:12 
GeneralCreating a thread for Windows and Linux Pin
Jerome Conus17-May-03 5:03
Jerome Conus17-May-03 5:03 
GeneralRe: Creating a thread for Windows and Linux Pin
valikac17-May-03 5:54
valikac17-May-03 5:54 
GeneralRe: Creating a thread for Windows and Linux Pin
Kannan Kalyanaraman17-May-03 6:12
Kannan Kalyanaraman17-May-03 6:12 
GeneralRe: Creating a thread for Windows and Linux Pin
markkuk17-May-03 9:26
markkuk17-May-03 9:26 
GeneralRe: Creating a thread for Windows and Linux Pin
User 988517-May-03 11:47
User 988517-May-03 11:47 
GeneralSyntax Error in typedef Pin
Makover17-May-03 4:53
Makover17-May-03 4:53 
GeneralRe: Syntax Error in typedef Pin
dabs17-May-03 4:59
dabs17-May-03 4:59 
GeneralRe: Syntax Error in typedef Pin
Anonymous17-May-03 5:05
Anonymous17-May-03 5:05 
GeneralRe: Syntax Error in typedef Pin
Makover17-May-03 5:17
Makover17-May-03 5:17 
GeneralRe: Syntax Error in typedef Pin
Makover17-May-03 6:16
Makover17-May-03 6:16 
GeneralRe: Syntax Error in typedef Pin
Makover17-May-03 6:49
Makover17-May-03 6:49 
GeneralSorting dates in a Listcontrol Pin
Megastoffel17-May-03 4:47
Megastoffel17-May-03 4:47 
GeneralRe: Sorting dates in a Listcontrol Pin
Martyn Pearson18-May-03 22:50
Martyn Pearson18-May-03 22:50 
GeneralProblem with read file Pin
Mazdak17-May-03 3:39
Mazdak17-May-03 3:39 

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.