Does anyone know how to add a new task into the existing windows scheduled Tasks? either through API call or OCX control.
Thanks,
Chris.C
Printable View
Does anyone know how to add a new task into the existing windows scheduled Tasks? either through API call or OCX control.
Thanks,
Chris.C
Can you use the "at" command:
Code:Public Sub RunAppAtTime(byval time As String, byVall Appname As String)
Dim sCommand As String
sCommand = "at " & time & " /INTERACTIVE " & Appname
x = Shell(sCommand)
End Sub