Results 1 to 6 of 6

Thread: debug.print

  1. #1

    Thread Starter
    Hyperactive Member theman32x's Avatar
    Join Date
    May 2000
    Location
    New Jersey, USA
    Posts
    305
    what does that do?

  2. #2
    Frenzied Member
    Join Date
    Jun 2000
    Location
    East Providence, RI
    Posts
    1,715
    ir means that it prints out a value of an interger, or string, it is used if your program isn't working corectly to see where your error is
    NXSupport - Your one-stop source for computer help

  3. #3
    Guest
    Code:
    Debug.Print "Hello World"
    Prints "Hello World" in the Immediate Window, if you dont see an immediate window hit Ctrl + G.

  4. #4
    Guest
    It's a very good debug board which comes to use for when you want to print little statements out:

    Code:
    For i = 0 to 100
    Debug.Print i
    Next i
    That's basically it, it's mainly to check to make sure your code is going well.

  5. #5
    Monday Morning Lunatic parksie's Avatar
    Join Date
    Mar 2000
    Location
    Mashin' on the motorway
    Posts
    8,169
    If you're in Break Mode, then you can also use the Immediate Window to enter commands.
    I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
    -- Linus Torvalds

  6. #6

    Thread Starter
    Hyperactive Member theman32x's Avatar
    Join Date
    May 2000
    Location
    New Jersey, USA
    Posts
    305
    thanks

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