Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. Windows Forms
  4. System Tray Time Interval Notify

System Tray Time Interval Notify

Scheduled Pinned Locked Moved Windows Forms
comdesignbeta-testinghelptutorial
6 Posts 3 Posters 14 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    Shoot2ill
    wrote on last edited by
    #1

    Hello all. I am brand spanking new to this forum, and would just like to start out by requesting a program to be made that would assist my fellow employees and I at our Academic Computing Help Desk at the University of South Florida. I am a Computer Engineering major and was looking for some detailed advice/assistance on how to design a non-obtrusive program that would reside in the system tray. Program duties: -starts with Windows -resides in System Tray -displays a balloon notification with customizable text -pop-up balloon display at 15 minute intervals (i.e. 12:15, 12:30, 12:45, 1:00...etc.) We use an incident reporting program called RightNow that refreshes incidents every 15 minutes. I am SO tired of having to look at the system tray clock every split-second to see whether or not I need to refresh RightNow. Please feel free to e-mail me @ Shoot2ill@aim.com with any feedback. Also, if this is not the correct board to be posting requests like this, please let me know where I should go. Thanks! :-D

    D T 2 Replies Last reply
    0
    • S Shoot2ill

      Hello all. I am brand spanking new to this forum, and would just like to start out by requesting a program to be made that would assist my fellow employees and I at our Academic Computing Help Desk at the University of South Florida. I am a Computer Engineering major and was looking for some detailed advice/assistance on how to design a non-obtrusive program that would reside in the system tray. Program duties: -starts with Windows -resides in System Tray -displays a balloon notification with customizable text -pop-up balloon display at 15 minute intervals (i.e. 12:15, 12:30, 12:45, 1:00...etc.) We use an incident reporting program called RightNow that refreshes incidents every 15 minutes. I am SO tired of having to look at the system tray clock every split-second to see whether or not I need to refresh RightNow. Please feel free to e-mail me @ Shoot2ill@aim.com with any feedback. Also, if this is not the correct board to be posting requests like this, please let me know where I should go. Thanks! :-D

      D Offline
      D Offline
      Dave Sexton
      wrote on last edited by
      #2

      What are you offering to pay me? Bear in mind that this ain't Rent-A-Coder[^].

      S 1 Reply Last reply
      0
      • D Dave Sexton

        What are you offering to pay me? Bear in mind that this ain't Rent-A-Coder[^].

        S Offline
        S Offline
        Shoot2ill
        wrote on last edited by
        #3

        $30? I really have no idea what the going rate is.

        D 1 Reply Last reply
        0
        • S Shoot2ill

          $30? I really have no idea what the going rate is.

          D Offline
          D Offline
          Dave Sexton
          wrote on last edited by
          #4

          Make it $50 & you got a deal. Will meet specs in OP. :)

          S 1 Reply Last reply
          0
          • D Dave Sexton

            Make it $50 & you got a deal. Will meet specs in OP. :)

            S Offline
            S Offline
            Shoot2ill
            wrote on last edited by
            #5

            Nah I don't want it that bad, lol. But thanks for the offer.

            1 Reply Last reply
            0
            • S Shoot2ill

              Hello all. I am brand spanking new to this forum, and would just like to start out by requesting a program to be made that would assist my fellow employees and I at our Academic Computing Help Desk at the University of South Florida. I am a Computer Engineering major and was looking for some detailed advice/assistance on how to design a non-obtrusive program that would reside in the system tray. Program duties: -starts with Windows -resides in System Tray -displays a balloon notification with customizable text -pop-up balloon display at 15 minute intervals (i.e. 12:15, 12:30, 12:45, 1:00...etc.) We use an incident reporting program called RightNow that refreshes incidents every 15 minutes. I am SO tired of having to look at the system tray clock every split-second to see whether or not I need to refresh RightNow. Please feel free to e-mail me @ Shoot2ill@aim.com with any feedback. Also, if this is not the correct board to be posting requests like this, please let me know where I should go. Thanks! :-D

              T Offline
              T Offline
              Tirthadip
              wrote on last edited by
              #6

              I dont know what is the language you are using to write your application.... I can try to help you in this regard if u opt to use VB.Net... 1.To make reside your app in System tray you have a control NotifyIcon in the control box of vb.net. Declare a NotifyIcon like this Private myNotifyIcon As NotifyIcon Start your application from a Main() Module. create a NotifyIcon at runtime. myNotifyIcon = New NotifyIcon myNotifyIcon.Icon = New Icon("YourIcon.ico") myNotifyIcon.Visible = True 2.Declare a Timer control Private WithEvents myTimer As Timers.Timer 3.Set up the property of that timer control myTimer = New Timers.Timer With myTimer .AutoReset = True .Interval = 1000 .Start() End With In your case the Interval property should be adjusted like your requirement. 4.In the Elapsed event of your timer write code to pop-up the message... Public Sub myTimer_Elapsed(ByVal sender As Object, ByVal e As System.Timers.ElapsedEventArgs) Handles myTimer.Elapsed Msgbox("HELLO WORLD") End Sub 5.To make your application start with Windows you have to create a shortcut of your application's .exe file to the StartUp folder of the computer where the application will run If you set the timer interval for 15 minutes,it will show you the message in every 15 minutes.... For Ballon display please consult with Google......

              Tirtha Miles to go before I sleep

              1 Reply Last reply
              0
              Reply
              • Reply as topic
              Log in to reply
              • Oldest to Newest
              • Newest to Oldest
              • Most Votes


              • Login

              • Don't have an account? Register

              • Login or register to search.
              • First post
                Last post
              0
              • Categories
              • Recent
              • Tags
              • Popular
              • World
              • Users
              • Groups