Different outputs in Release and debug
I am very confused...I am building an application which has 2 panes...The panes r like a windows explorer with the left side being a tree ctrl and right side being a editor.... .On my computer the debug mode runs very well but when i run on it a different computer, if i refresh the left side pane..the contents vanish...
While the release mode has some problems like writing it to a file which dont appear in debug mode.
May be ASSERT problem ???
Hi,
I think, you should control your ASSERT' s in your code. May be you wrote some code in ASSERT(...code...), that it also must to work in Release version. ASSERT won't be included in Release version.
In Release:
#define ASSERT(f) ((void)0)
May be this will help you.
ugur.