CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Aug 2003
    Posts
    107

    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.
    Ritwik Samsi

  2. #2
    Join Date
    Oct 2003
    Location
    Germany
    Posts
    4

    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.

  3. #3
    Join Date
    Aug 1999
    Location
    Wisconsin
    Posts
    507
    You might find the folowing article helpful:

    http://www.codeproject.com/debug/survivereleasever.asp

  4. #4
    Join Date
    Aug 2003
    Posts
    107

    cricheditctrl

    The main problem is in the Cricheditcontrol or CEdit....It shows blank lines after its stored what could be the reason?
    Ritwik Samsi

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured