Click here to Skip to main content
16,004,901 members
Home / Discussions / Windows Forms
   

Windows Forms

 
AnswerRe: How to identify the changes made to the form data? Pin
roel_v24-Apr-07 20:11
roel_v24-Apr-07 20:11 
GeneralRe: How to identify the changes made to the form data? Pin
Subrahmanyam K25-Apr-07 0:04
Subrahmanyam K25-Apr-07 0:04 
QuestionSystem Tray Time Interval Notify Pin
Shoot2ill24-Apr-07 2:43
Shoot2ill24-Apr-07 2:43 
AnswerRe: System Tray Time Interval Notify Pin
Dave Sexton24-Apr-07 4:05
Dave Sexton24-Apr-07 4:05 
GeneralRe: System Tray Time Interval Notify Pin
Shoot2ill24-Apr-07 4:22
Shoot2ill24-Apr-07 4:22 
GeneralRe: System Tray Time Interval Notify Pin
Dave Sexton24-Apr-07 4:35
Dave Sexton24-Apr-07 4:35 
GeneralRe: System Tray Time Interval Notify Pin
Shoot2ill24-Apr-07 4:56
Shoot2ill24-Apr-07 4:56 
AnswerRe: System Tray Time Interval Notify Pin
Tirthadip24-Apr-07 19:10
Tirthadip24-Apr-07 19:10 
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<br />
  myNotifyIcon.Icon = New Icon("YourIcon.ico")<br />
 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<br />
            With myTimer<br />
                .AutoReset = True<br />
                .Interval = 1000<br />
                .Start()<br />
            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<br />
     Msgbox("HELLO WORLD")<br />
      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

Questionhow to check pc's in the network Pin
ameyajoshi24-Apr-07 1:24
ameyajoshi24-Apr-07 1:24 
AnswerRe: how to check pc's in the network Pin
Paul Conrad13-Jul-07 13:46
professionalPaul Conrad13-Jul-07 13:46 
QuestionTrial Pin
tantoun22-Apr-07 23:35
tantoun22-Apr-07 23:35 
AnswerRe: Trial Pin
Pete O'Hanlon22-Apr-07 23:57
mvePete O'Hanlon22-Apr-07 23:57 
GeneralRe: Trial Pin
Pete O'Hanlon23-Apr-07 0:52
mvePete O'Hanlon23-Apr-07 0:52 
GeneralRe: Trial Pin
Pete O'Hanlon23-Apr-07 1:10
mvePete O'Hanlon23-Apr-07 1:10 
AnswerRe: Trial Pin
Colin Angus Mackay23-Apr-07 0:52
Colin Angus Mackay23-Apr-07 0:52 
GeneralRe: Trial Pin
Pete O'Hanlon23-Apr-07 0:53
mvePete O'Hanlon23-Apr-07 0:53 
GeneralRe: Trial Pin
tantoun23-Apr-07 4:51
tantoun23-Apr-07 4:51 
GeneralRe: Trial Pin
Brady Kelly23-Apr-07 20:29
Brady Kelly23-Apr-07 20:29 
GeneralRe: Trial Pin
Pete O'Hanlon23-Apr-07 22:53
mvePete O'Hanlon23-Apr-07 22:53 
AnswerRe: Trial Pin
Dave Sexton24-Apr-07 3:56
Dave Sexton24-Apr-07 3:56 
QuestionDeploy project Pin
mano_meee22-Apr-07 1:25
mano_meee22-Apr-07 1:25 
QuestionDateTimePicker and BackColor Property??? Pin
pnslcs21-Apr-07 17:24
pnslcs21-Apr-07 17:24 
QuestionParent and child forms Pin
sarah_malik21-Apr-07 7:28
sarah_malik21-Apr-07 7:28 
AnswerRe: Parent and child forms Pin
CompMan441-May-07 13:38
CompMan441-May-07 13:38 
GeneralRe: Parent and child forms Pin
sarah_malik2-May-07 5:18
sarah_malik2-May-07 5:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.