// JP opened flex table

Click to See Complete Forum and Search --> : release build


renata
November 16th, 2000, 06:16 PM
I have a class derived from CListCtrl in my application. It works fine in debug mode, but it crashes in release. It looks like it crashes when OnItemchanged() message is sent.


Please help
thanks

Dmitry Zemskov
November 24th, 2000, 12:16 PM
Try to use /GZ compiler switch option - 'Catch release-build errors in debug build'. Refer to the help on 'compiler switches' - /GZ. This will make your program behave in DEBUG mode exactly like in the RELEASE one so you will be able to catch errors that appeared in release only

//JP added flex table