 | Parse object provides simple interface for quickly coding routines that will parse command line arguments (and other strings).
The object allows for parsing based on named arguments as well as delimiters. |
 | StatusBox object provides a modeless MessageBox that you
can use to display messages while your code continues to run. You can also
specify a Cancel button so that the user can cancel a long running
procedure. |
 | Stopwatch object is an easy to use object for timing how fast
applications and code fragments run. Formatted results are available to calling program when stopwatch is stopped.
Timings are measured in days, hours, minutes and seconds.
If you need measurements in milliseconds, then you can use the Timer
object that also ships with this package. |
 | Wait object provides a pre-coded Pause capability to your program.
You specify the number of seconds you want your program to wait before
proceeding. |
 | TimedMessageBox object provides the ability to display a modal
MessageBox
that will automatically close itself after a specified time interval. This helps avoid situation where there may be no user to press OK button to continue. |
 | Timer object is an easy to use object for measuring time intervals
down to a millisecond. This object provides a flexible and intuitive
interface that allows you full control over when you start, pause and stop
your timer. |