HOME

TheInfoList



OR:

VB Watch is a
Visual Basic Visual Basic is a name for a family of programming languages from Microsoft. It may refer to: * Visual Basic .NET (now simply referred to as "Visual Basic"), the current version of Visual Basic launched in 2002 which runs on .NET * Visual Basic (c ...
programming utility. VB Watch consists of three tools for Visual Basic 6.0: Profiler, Protector and Debugger.


Profiler

VB Watch Profiler measures the speed of a running Visual Basic program. It displays the time spent in each procedure and/or a line of code. This information can be used in code optimization to detect bottleneck procedures and lines. The Profiler can also be used to measure
code coverage In computer science, test coverage is a percentage measure of the degree to which the source code of a program is executed when a particular test suite is run. A program with high test coverage has more of its source code executed during testing ...
during software testing.


Debugger

VB Watch Debugger monitors what happens inside a running Visual Basic program or library. It displays the
call stack In computer science, a call stack is a stack data structure that stores information about the active subroutines of a computer program. This kind of stack is also known as an execution stack, program stack, control stack, run-time stack, or mach ...
, execution trace, global variables and the number of live objects. The Debugger also allows one to add breakpoints in executable files.


External links


VB Watch home page
Debuggers Profilers Software testing tools Programming tools for Windows