Readme.txt
上传用户:woomicn
上传日期:2017-11-10
资源大小:42k
文件大小:2k
源码类别:

多显示器编程

开发平台:

Visual C++

  1. ------------------------------------------------------------------------------
  2. Program     : Visual C++ Custom Debug Monitor 1.0
  3. Files       : CDebug.cpp   CDebug.h    Debug.exe
  4. Author      : Daniel Chirca
  5. Email       : D.Chirca@finsiel.ro
  6. Version     : 1.0
  7. ------------------------------------------------------------------------------
  8. Program description
  9. ------------------------------------------------------------------------------
  10. CDebug class implements for Visual C++ more or less the functionality
  11. that Visual Basic provides, i.e. the posibility
  12. to insert into your C++ source code calls like Debug.printf(...), and
  13. watch the messages in a separate window (Immediate window), without
  14. the need to work with the Debug version of the project.
  15. Using the program
  16. ------------------------------------------------------------------------------
  17. - Insert into your Visual C++ project the CDebug.cpp and CDebug.h files
  18. - Create a global instance of the CDebug class, for example:
  19. CDebug Debug;
  20. (don't forget the include statement: #include "Cdebug.h")
  21. - insert your debug messages anywhere you like:
  22. Debug.Printf0(...); or
  23. Debug.Printf1(...); or
  24. Debug.Printf2(...); or
  25. Debug.Printf3(...);
  26. - run the Debug.exe program (a nice ideea is to put it into
  27. your Tools menu from IDE environment), select the "Options"
  28. button to customize his behaviour, then press the "Start" button.
  29. - run your project.
  30. - watch your messages...
  31. Notes
  32. ------------------------------------------------------------------------------
  33. - The Debug.printfx (where x=0, 1, 2, 3) functions accepts the same
  34. arguments as the printf function does (formatting, ...)
  35. - x(=0, 1, 2, 3) means the message level:
  36. printf0 sends level 0 messages
  37. printf1 sends level 1 messages
  38. printf2 sends level 2 messages
  39. printf3 sends level 3 messages
  40. - Use the "Options" button from Debug.exe to customize
  41. which messages you want to intercept...
  42. Other Notes
  43. ------------------------------------------------------------------------------
  44. - You are free to modify the source code in CDebug.cpp and CDebug.h anyway you want,
  45. but please send me an e-mail if you do it.
  46. Special thanks
  47. ------------------------------------------------------------------------------
  48. I want to give thanks to Cecil A. Galbraith, from CustomSoft,
  49. from which I took the ideea to develop my own debug utility.
  50. Dan
  51. May 2000