DebugView是一款免費輔助工具,用來輸出捕捉OutputDebugString()函數輸出的信息等。
?
1 下載
http://technet.microsoft.com/en-us/sysinternals/bb896647
?
1.1 介紹DebugView
http://www.vcfans.com/2008/11/trace-show-about-a-tool-debugview-sent-a-message-to-track-their-friends.html
2 DebugView圖文教程
http://wenku.baidu.com/view/bf1399a4f524ccbff121840b
?
3 在初次使用debugView的時候可能會看不到輸出,有幾個方面是值得注意的:
3.1 必須開啟Capture。菜單 -- Capture --?Capture Win32
3.2 必須修改Filter。菜單 -- Edit -- Filter/HighLight... 那個 Include 和 Exclude 選項非常重要。
Include 表示你希望可以看到的 某些關鍵詞,使用 ; 分號分割關鍵詞
Exclude表示排斥的,如果你不想看到其他進程輸出的 Hello 字符,那么可以在此欄設置 Hello; 使用分號分割關鍵詞。那么,原來的進程輸出的信息就會被屏蔽掉了。這也是我們只看我們自己想要看到的信息的使用方法。
這個filter是非常重要的。學會了設置,才能說學會了使用DebugView。
?
4 DebugView不能正常輸出OutputDebugString的問題總結
http://blog.csdn.net/yinzhiqing/article/details/6585383
?
--the end