scheduler

  • Thread starter Thread starter jdrott1
  • Start date Start date
J

jdrott1

i'm trying to create a scheduler program for a friend of mine. he
needs to have customer information with a relationship to the
scheduler. i'm at a loss trying to get started. can someone guide
me? has anyone done this before?
 
any problem in the use of windows scheduler?
build a program which do the job and create a task for it in the
scheduler.
 
i'm trying to create a scheduler program for a friend of mine. he
needs to have customer information with a relationship to the
scheduler. i'm at a loss trying to get started. can someone guide
me? has anyone done this before?

Hi,
If all you want to do is to do a work on a specific time defined in
your scheduler program, a basic approach would be using a timer and
TimeString object.

For example,
' First enable timer and set interval to 1000 miliseconds
' Assuming you want to do a work at "12:05:10".

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Timer1.Tick
Label1.Text = TimeString

If Label1.Text = "12:05:10" Then
' Work time !
End If


It's optional to disable timer but don't do it to make clock continue.
(you can use a seperate timer for if-then notification).

Hope this helps,

Onur
 
jdrott1 said:
i'm trying to create a scheduler program for a friend of mine. he
needs to have customer information with a relationship to the
scheduler. i'm at a loss trying to get started. can someone guide
me?

Which problem do you have? We don't know anything about your skills, so
where can we start explaining? One could say: "I wonder why you are
trying to do something if the only thing that you can do is asking other
people." But I don't say this, of course.
has anyone done this before?

Yes. :-)


Armin
 
Which problem do you have? We don't know anything about your skills, so
where can we start explaining? One could say: "I wonder why you are
trying to do something if the only thing that you can do is asking other
people." But I don't say this, of course.


Yes. :-)

Armin

it would be for an appointment scheduler. i have limited database and
visual basic skills. i'm not sure what other programs, i.e. excel, to
use to help me.
 
jdrott1 said:
it would be for an appointment scheduler. i have limited database
and visual basic skills. i'm not sure what other programs, i.e.
excel, to use to help me.

I don't know which you wanna use. If you want to use Excel, in what way,
and what's left for the VB program? Do you have a set target, an image
of the result? Currently I can't add anything to the other two answers.


Armin
 
Back
Top