Huge Collections of Software Manuals and Knowledgebase

GreatManuals.com
Huge Collections of Software Manuals and Knowledgebase

 
Home Contact Us Request to publish your help manuals Request to remove your help manuals
User's Guide
» DzSoft Perl Editor
Getting Started
» Built-in Hints
» Code Explorer
» Collapsible Subroutines
» Breakpoints
» Script Input Data Editor
» Run in Command Prompt
» Insert Print Function Dialog
» Perl Interpreter
» Syntax Check
Options
» Options Dialog
» Editor Options
» Default Keymapping
» Classic Keymapping
» Brief Keymapping
» Epsilon Keymapping
» Visual Studio Keymapping
Support Information
» Frequently Asked Questions
» Tips & Tricks
» Registration & Support
 

Breakpoints

No matter how careful you are when writing code, your scripts are likely to contain errors, or bugs, that prevent them from running the way you intended. Debugging is the process of locating and fixing errors in your scripts. Breakpoints is the most effective way to locate errors to fix them.

flash drive data undelete usb data recovery software recover usb drive
computer spy passwords recovery memory card recovery software
deleted photos recovery best data recovery software send group sms

There are several ways to set/remove a breakpoint:

  • Click on the gutter
  • Or press F6
  • Or click on the toolbar button breakpoint

Click Run to execute the script.

When the Perl interpreter reaches a breakpoint, the execution of the script is stopped and DzSoft Perl Editor displays a list of all the script's variables and their current values. To continue the execution, click the Continue Execution button.

Notes:

  • Set the breakpoints only between separate commands, for example:

print "Content-type: text/html\n\n";

$variable = 'abc';

l print "<html><h1>Hello!</h1></html>\n";

  • This is wrong:

print <<END;

<html><head>

l <title>

END

while ($flag)

l {

# ...

}

Home | Contact Us | Request to publish your help manuals | Request to remove your help manuals