Results 1 to 3 of 3

Thread: Need to set VB to auto run before I get to work?????

  1. #1

    Thread Starter
    Member
    Join Date
    Jan 2001
    Location
    Dallas TX
    Posts
    51

    Question

    Need to set VB to auto run before I get to work?????

    This is killing me....
    If you can please help


    Thanks

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

    <?>

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

    ___ Adolf Jensen

  3. #3
    Hyperactive Member
    Join Date
    Apr 2000
    Location
    Isle of Man
    Posts
    276
    or alternativeley you could use the task scheduler

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