Need to set VB to auto run before I get to work?????
This is killing me....
If you can please help
Thanks
Printable View
Need to set VB to auto run before I get to work?????
This is killing me....
If you can please help
Thanks
Vb? If you mean a vb App then just use a timer and if the time is whatever then shell your application.
'Make a little app as an exe and let it run
[code]
set your timer interval to 60000
and enabled
Private Sub Timer1_Timer()
Dim curTime As Date
curTime = Format(Now, "hh:mm AMPM")
If curTime = "8:00 AM" Then
Shell ("C:\myApp.exe")
End If
End Sub
or alternativeley you could use the task scheduler