Results 1 to 4 of 4

Thread: Debug.Print

  1. #1

    Thread Starter
    Member UConnVendetta's Avatar
    Join Date
    Jul 2003
    Location
    Madison, CT, USA
    Posts
    36

    Debug.Print

    Remember the Debug.Print statement from VB 6.0, where your program could print stuff to the Immediate window? What happened to it in VB.net; what is it called now?
    Jazzman Will Rosenberg
    Chief Admin of [Vendetta]
    http://vendetta.n3.com
    AIM: UConnVendetta, CollegeGuy184

  2. #2
    Frenzied Member dynamic_sysop's Avatar
    Join Date
    Jun 2003
    Location
    Ashby, Leicestershire.
    Posts
    1,142
    VB Code:
    1. Console.WriteLine("some stuff!")
    ~
    if a post is resolved, please mark it as [Resolved]
    protected string get_Signature(){return Censored;}
    [vbcode][php] please use code tags when posting any code [/php][/vbcode]

  3. #3

    Thread Starter
    Member UConnVendetta's Avatar
    Join Date
    Jul 2003
    Location
    Madison, CT, USA
    Posts
    36

    hmmm

    That isnt working at all. Maybe I'm doing something wrong, or maybe I'm not looking in the right window. I don't know.
    Jazzman Will Rosenberg
    Chief Admin of [Vendetta]
    http://vendetta.n3.com
    AIM: UConnVendetta, CollegeGuy184

  4. #4
    PowerPoster
    Join Date
    Jul 2002
    Location
    Dublin, Ireland
    Posts
    2,148
    VB Code:
    1. Debug.WriteLine("foo")

    or even more useful
    VB Code:
    1. Trace.WriteLine("foo")

    The former will output the text in Debug mode - the latter will output text to any "TraceListner" even from a compiled executable...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width