birtles.org.uk logo

Program Running Utilities

Delay Run Program:

Delays the start of a program
Delay run
Delay run Delphi Source

Usage:

delayrun [SleepTime] program [parameters]
SleepTime is in milliseconds (default 0)
program shoud be a fully qualified name (inlcuding directory) and if it contains spaces should be contained inside quotes
parameters are passed directly to the program which is being run (default none)
e.g. delayrun 3000 c:\windows\notepad.exe
would run notepad after 3 seconds

Priority Run Program:

Attempts to run a program in a specified priority
Priority run
Priority run Delphi Source

Usage:

priorityrun [Priority] program [parameters]
Priority (0-3) (default 2)
    0:Low
    1:Normal
    2:High
    3:Realtime
program shoud be a fully qualified name (inlcuding directory) and if it contains spaces should be contained inside quotes
parameters are passed directly to the program which is being run (default none)

Utility unit for running programs (required to compile the above source)
Show message utility required by runutils