|
|
 |
 |
 |
Control Highlights:
|
 |
- bbScheduler is a shareware scheduler application written for Win95-NT4-Win98.
- It also has a COM programable interface. Through this COM interface you can read/write all scheduled task, that interactive users made or could make.
- You can hide absolutely bbScheduler from users
- It doesnot require any additional, special dll. It is only 70k
|
 |
Short example: starting c:\any.exe once only at 1999.sep.22 at 13:00 |
| |
 |
oTasks=createobject("bbScheduler.Tasks")
oNewTask=oTasks.Add()
oNewTask.ProgramFullPath="c:\any.exe"
oNewTask.StartType=0
oNewTask.Year=1999
oNewTask.Month=9
oNewTask.Day=22
oNewTask.StartTimeType=1
oNewTask.Hour=13
oNewTask.Minute=0
oTasks.UserMode=1
// users are not able to delete/add/modify any scheduled tasks,
// but can see them
oTasks.Save()
|
|
 |
A snapshot of bbScheduler user interface:
|
 |
  |
 |
|
Note: If you are a registered user, and your version number is less, than is indicated
here, send me an email, and I will send you this version as registered. |
|
 |