Basicly i'm just trying to make a program to start and stop programs at certain times.
example start a email program at 8am and stop it a 5pm.
but i carn't find any documentation on the subject.
can anyone help me out ??
Printable View
Basicly i'm just trying to make a program to start and stop programs at certain times.
example start a email program at 8am and stop it a 5pm.
but i carn't find any documentation on the subject.
can anyone help me out ??
You could just use timers to get your start and stop events. Then use ShellExecuteEx to start programs and TerminateProcess to stop them.
http://msdn.microsoft.com/library/de...lexecuteex.asp
http://msdn.microsoft.com/library/de...ateprocess.asp
Good Luck
Thanks guys for your help