S Sagaert Johan Oct 7, 2003 #1 In vc6 there was the TRACE fuction to write to the output window while debugging Is this also possible in the VS .NET IDE ?
In vc6 there was the TRACE fuction to write to the output window while debugging Is this also possible in the VS .NET IDE ?
D Dan Cimpoiesu Oct 7, 2003 #2 System.Diagnostics.Debug.Write System.Diagnostics.Debug.WriteLine Hope this helps Dan Cimpoiesu
S Sagaert Johan Oct 7, 2003 #4 This does'nt work when debugging Smartdevice Apps ,(CF) No error , but nothing shows up in the debugger output window.
This does'nt work when debugging Smartdevice Apps ,(CF) No error , but nothing shows up in the debugger output window.
J Jay B. Harlow [MVP - Outlook] Oct 7, 2003 #5 Sagaert, In addition to System.Diagnostics.Debug there is System.Diagnostics.Trace. By default Debug is available in only Debug Builds of your project. By default Trace is available in both Debug & Release builds of your project. Hope this helps Jay
Sagaert, In addition to System.Diagnostics.Debug there is System.Diagnostics.Trace. By default Debug is available in only Debug Builds of your project. By default Trace is available in both Debug & Release builds of your project. Hope this helps Jay