Announcement

Collapse
No announcement yet.

Debugging

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Debugging

    I was wondering if there was a utility or a way to debug an .efs file similar to Visual C++. One that let you set break points and step through (or into and out of) the code, and allowed you to view the value of all the variables with each step. I was trying to play around with Microsoft Script Debugger, but haven't had much success with using it with .efs files yet.

    I would appreciate any input or suggestions.

    VT

  • #2
    As you have probably already seen, EFS does come with the debugPrint() and debugClear() functions which allow you to write variables, etc. to the output window. You can also create timer functions to profile the speed of various sections of code, etc. Definitely not a full blown debugger but it is useful.

    Chris

    Comment


    • #3
      debugPrintln("Will print this on a new line");

      debugPrint("Will print this on an existing line");

      debugClear(); //Will clear the Formula Output window

      Comment


      • #4
        Thanks,

        Yes, I knew of those options. While they help, they are kind of clumsy to use. I was just hoping there was a way to use a real full blown debugger, or even a partially blown one .

        Thanks again,

        VT

        Comment

        Working...
        X