scheduler

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • jdrott1

    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?
  • Thiago Macedo

    #2
    Re: scheduler

    any problem in the use of windows scheduler?
    build a program which do the job and create a task for it in the
    scheduler.

    jdrott1 wrote:
    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?

    Comment

    • kimiraikkonen

      #3
      Re: scheduler

      On May 3, 3:09 am, jdrott1 <jonathandr...@ gmail.comwrote:
      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(ByV al sender As System.Object, ByVal e As
      System.EventArg s) 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

      Comment

      • Armin Zingler

        #4
        Re: scheduler

        "jdrott1" <jonathandrott@ gmail.comschrie b
        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

        Comment

        • jdrott1

          #5
          Re: scheduler

          On May 3, 4:28 am, "Armin Zingler" <az.nos...@free net.dewrote:
          "jdrott1" <jonathandr...@ gmail.comschrie b
          >
          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
          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.

          Comment

          • Armin Zingler

            #6
            Re: scheduler

            "jdrott1" <jonathandrott@ gmail.comschrie b
            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

            Comment

            Working...