Example: Debug Print - Function

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Intrigued
    Indigo Rose Customer
    • Dec 2003
    • 6125

    Example: Debug Print - Function

    Here is a function that will help you use the Debugger more quicky. If you need the Debugger to print out differently then experiment with changing what's inside the function:

    Code:
    function fDebug(argstring)
    	Debug.ShowWindow(true)
    		Debug.Print(argstring.."\r\n")
    end
    
    -- Here are a couple how-to examples
    fDebug("Hey!")
    fDebug("What's up?")
    ps. Several of us developers also use the Dialog.Messag() action when we need to output a small amount of "debugging" data.
    Intrigued
Working...
X