Results 1 to 2 of 2

Thread: schedual a program to run

  1. #1
    Guest

    Smile

    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!

  2. #2
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    <?>


    '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
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width