Timer on steroids

G

Guest

Hello,

Does anyone know of a timer control which has similar functionality as the
scheduler in SQL server?

I'm most interested in being able to set up recurring tasks.
I want to stay away from the windows scheduler if possible.

Thanks for any feedback,
Mark
 
T

Tom Shelton

Hello,

Does anyone know of a timer control which has similar functionality as the
scheduler in SQL server?

I'm most interested in being able to set up recurring tasks.
I want to stay away from the windows scheduler if possible.

Thanks for any feedback,
Mark

I'm not familar with the SQL server timer... But, there are several
timers available in .NET. From your brief description, you may want to
look at either System.Threading.Timer or System.Timers.Timer.

HTH
 
G

Guest

I guess I should have mentioned the scheduler in Outlook as it is more well
known. I need something robust that can schedule things hourly, weekly,
monthly, specific dates, start and end dates, specific days of the week and
on and on.

I was hoping someone had run across a component which has this capablility.
 
T

Tom Shelton

I guess I should have mentioned the scheduler in Outlook as it is more well
known. I need something robust that can schedule things hourly, weekly,
monthly, specific dates, start and end dates, specific days of the week and
on and on.

I was hoping someone had run across a component which has this capablility.

Oh, I see.... Hmmm - I'm not familiar with anything like that
specifically.
 
C

Cor Ligthert

Mark,

The first thing you have to look for than is a windowservice.

Than you need periodically to check if the time is elapsed, what you can do
by using a check every minute or whatever slice you want.

Beside the service you need the System.Timers.Timer as Tom mentioned.

I hope this helps,

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top