I wrote a program in VB and hoping I can schedual
it to run on a NT workstation(not server). Is
there a way to hard code or using any service
on NT station?
Thank you in advance for any help!
Printable View
I wrote a program in VB and hoping I can schedual
it to run on a NT workstation(not server). Is
there a way to hard code or using any service
on NT station?
Thank you in advance for any help!
'you could just write another little app
'use a time and set it's interval to 58,000
'make it titleless without controls or captions
'set showintaskbar to false
'it will appear in the task list if you want to kill it
Code:Private Sub Timer1_Timer()
Dim curTime As Date
curTime = Format(Now, "hh:mm AMPM")
If curTime = "11:00 AM" Then
Call ReleaseMe
End If
End Sub
Public Sub ReleaseMe
shell ("mypath\myapp.exe")
End Sub