CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 1999
    Posts
    34

    Need a Debug Window

    Hi, All,
    I'd like to create a debug/Monitor window (similar to VisualStudio BUILD window) for the app I developed and the window can be easily reuse in some other applications. The messages displayed are mostly the status, i.e. most likely message strings. The window can be turn on and off ( or hide). I am sure there are some this type of code ( either dll or com) are out there. Any suggestions are welcome. Thanks.


  2. #2
    Join Date
    Jun 1999
    Posts
    27

    Re: Need a Debug Window


    Hello,

    Please take a look at this function: "_CrtSetReportHook()". It's easy to implement a TRACE-hook using this one.

    Hope this helps,
    Jean-Marie




  3. #3
    Guest

    Re: Need a Debug Window

    TRACE()or AfxDump()


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