메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

Autoit debugview

데브카페
Devcafe (토론 | 기여)님의 2025년 7월 3일 (목) 20:21 판 (새 문서: == Autoit debugview == <source lang=autoit> ; ; credits go to ; Karsten Violka (kav@ctmagazin.de), Stefan Porteck (spo@ctmagazin.de) ; Func _DebugPrint($msg, $error = @error, $extended = @extended, $ScriptLineNumber = @ScriptLineNumber) ; view with debug view ; http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx Local $out = $msg & ", Line:" & $ScriptLineNumber & ", Error: " & $error & " " & $extended ;Output to application attaching a cons...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

Autoit debugview

;
; credits go to 
; Karsten Violka (kav@ctmagazin.de), Stefan Porteck (spo@ctmagazin.de)
;
Func _DebugPrint($msg, $error = @error, $extended = @extended, $ScriptLineNumber = @ScriptLineNumber)
    
    ; view with debug view 
    ; http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx
    
    Local $out = $msg & ", Line:" & $ScriptLineNumber & ", Error: " & $error & " " & $extended

    ;Output to application attaching a console to the script engine
    ConsoleWrite($out & @CRLF)

    ;Output to debugger (dbgview.exe)
    DllCall("kernel32.dll", "none", "OutputDebugString", "str", $out)
        
EndFunc   ;==>_DebugPrint

뷰어 다운로드

http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx

Comments