TRACE function ?? (writing to IDE output window while debugging)

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Sagaert Johan

    TRACE function ?? (writing to IDE output window while debugging)

    In vc6 there was the TRACE fuction to write to the output window while
    debugging

    Is this also possible in the VS .NET IDE ?


  • Dan Cimpoiesu

    #2
    Re: TRACE function ?? (writing to IDE output window while debugging)

    System.Diagnost ics.Debug.Write
    System.Diagnost ics.Debug.Write Line

    Hope this helps
    Dan Cimpoiesu

    "Sagaert Johan" <REMOVEsagaert_ jREMOVE@hotmail .com> wrote in message
    news:OVNFwhMjDH A.3192@TK2MSFTN GP11.phx.gbl...[color=blue]
    > In vc6 there was the TRACE fuction to write to the output window while
    > debugging
    >
    > Is this also possible in the VS .NET IDE ?
    >
    >[/color]


    Comment

    • Sagaert Johan

      #3
      Re: TRACE function ?? (writing to IDE output window while debugging)

      Thanks , i did'nt discover the diagnostics class..

      "Dan Cimpoiesu" <dancimpoiesu@g mx.net> wrote in message
      news:ODHxZwMjDH A.888@TK2MSFTNG P09.phx.gbl...[color=blue]
      > System.Diagnost ics.Debug.Write
      > System.Diagnost ics.Debug.Write Line
      >
      > Hope this helps
      > Dan Cimpoiesu
      >
      > "Sagaert Johan" <REMOVEsagaert_ jREMOVE@hotmail .com> wrote in message
      > news:OVNFwhMjDH A.3192@TK2MSFTN GP11.phx.gbl...[color=green]
      > > In vc6 there was the TRACE fuction to write to the output window while
      > > debugging
      > >
      > > Is this also possible in the VS .NET IDE ?
      > >
      > >[/color]
      >
      >[/color]


      Comment

      • Sagaert Johan

        #4
        Re: TRACE function ?? (writing to IDE output window while debugging)

        This does'nt work when debugging Smartdevice Apps ,(CF)
        No error , but nothing shows up in the debugger output window.


        "Sagaert Johan" <REMOVEsagaert_ jREMOVE@hotmail .com> wrote in message
        news:OVNFwhMjDH A.3192@TK2MSFTN GP11.phx.gbl...[color=blue]
        > In vc6 there was the TRACE fuction to write to the output window while
        > debugging
        >
        > Is this also possible in the VS .NET IDE ?
        >
        >[/color]


        Comment

        • Jay B. Harlow [MVP - Outlook]

          #5
          Re: TRACE function ?? (writing to IDE output window while debugging)

          Sagaert,
          In addition to System.Diagnost ics.Debug there is System.Diagnost ics.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 Johan" <REMOVEsagaert_ jREMOVE@hotmail .com> wrote in message
          news:OVNFwhMjDH A.3192@TK2MSFTN GP11.phx.gbl...[color=blue]
          > In vc6 there was the TRACE fuction to write to the output window while
          > debugging
          >
          > Is this also possible in the VS .NET IDE ?
          >
          >[/color]


          Comment

          Working...