Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. vbtutor

    Task Scheduler API?

    It's nice to see that this thread is still alive and active. Thanks Xodus for cleaning up the code a bit, and thanks to Giddo for offering to help. I also found some references that allow you to access the task scheduler API through a command shell interface using the AT command. This is only...
  2. vbtutor

    Stand Alone App that Executes Script and Terminates

    Does anyone have any suggestions on this?
  3. vbtutor

    Task Scheduler API?

    This code example works just fine at creating a scheduled job in Windows Task Scheduler, but one thing it doesn't do is check to see if the job is already scheduled. So if you wanted to have the ability to change your schedule, then you simply create another job with this code, rather than...
  4. vbtutor

    Stand Alone App that Executes Script and Terminates

    Hi, I need to create a way to have a stand alone exectuable app created in VB, or maybe C++, with a WebBrowser control that will automatically navigate to a specified PHP script, and execute that script. The app should run entirely in the background with no visible form(s) and be activated by...
  5. vbtutor

    Task Scheduler API?

    I found a VB example at planet source code. Here's what I found: Option Explicit ' Schedule api's Declare Function NetScheduleJobAdd Lib "netapi32.dll" _ (ByVal Servername As String, Buffer As Any, Jobid As Long) As Long ' Schedule structure Type AT_INFO JobTime As Long...
  6. vbtutor

    Task Scheduler API?

    That's not exactly what I'm looking for, but thanks.. I looked up the NetScheduleJobAdd() function at msdn, and it appears to be a C++ function. I am using VB 6.0. I think I did find what I'm looking for though. Thanks again.
  7. vbtutor

    Task Scheduler API?

    I need to either find the path and file structure/format information that Windows Task Scheduler uses to run Scheduled Tasks so that I can create a file that the Task Scheduler will automatically read and process. Or have an API call to the scheduler from within Visual Basic 6.0 so that...

Part and Inventory Search

Back
Top