Click here to Skip to main content
15,921,793 members
Home / Discussions / C#
   

C#

 
Questionhow can i fix this eventhandler, urgent* Pin
kevinskrazyklub16-Nov-07 1:44
kevinskrazyklub16-Nov-07 1:44 
QuestionRe: how can i fix this eventhandler, urgent* Pin
TJoe16-Nov-07 2:08
TJoe16-Nov-07 2:08 
Where is seconds declared and initialized? Is it set anywhere else in code? Where is SecondChangedEvent hooked up to the timer? What is the interval of the timer? What is the scope of the timer?

At first glance I would say that just because you are incrementing "seconds" in your timer handler, it's not a count of actual seconds (even if your timer is suppose to fire every second). It is better to save the start time when you start your timer, then calculate the numer of seconds that has passed.

private DateTime startTime = DateTime.Now;
 
// ...
 
private static void SecondChangedEvent(object source, ElapsedEventArgs e) {
    TimeSpan span = DateTime.Now - startTime;
    Int32 seconds = span.TotalSeconds;
    // ...
}



Take care,
Tom

-----------------------------------------------
Check out my blog at http://tjoe.wordpress.com

AnswerRe: how can i fix this eventhandler, urgent* Pin
kevinskrazyklub16-Nov-07 2:30
kevinskrazyklub16-Nov-07 2:30 
GeneralRe: how can i fix this eventhandler, urgent* Pin
Luc Pattyn16-Nov-07 3:13
sitebuilderLuc Pattyn16-Nov-07 3:13 
QuestionCalling a vb6 dll with user-defined types from C#? Pin
Gadjuka16-Nov-07 1:24
Gadjuka16-Nov-07 1:24 
AnswerRe: Calling a vb6 dll with user-defined types from C#? Pin
Judah Gabriel Himango16-Nov-07 5:17
sponsorJudah Gabriel Himango16-Nov-07 5:17 
QuestionRe: Calling a vb6 dll with user-defined types from C#? [modified] Pin
Gadjuka18-Nov-07 21:41
Gadjuka18-Nov-07 21:41 
AnswerRe: Calling a vb6 dll with user-defined types from C#? Pin
Judah Gabriel Himango19-Nov-07 4:17
sponsorJudah Gabriel Himango19-Nov-07 4:17 
NewsRe: Calling a vb6 dll with user-defined types from C#? Pin
Gadjuka19-Nov-07 4:29
Gadjuka19-Nov-07 4:29 
GeneralRe: Calling a vb6 dll with user-defined types from C#? Pin
Judah Gabriel Himango19-Nov-07 5:08
sponsorJudah Gabriel Himango19-Nov-07 5:08 
NewsRe: Calling a vb6 dll with user-defined types from C#? Pin
Gadjuka19-Nov-07 21:33
Gadjuka19-Nov-07 21:33 
AnswerRe: Calling a vb6 dll with user-defined types from C#? Pin
Gadjuka20-Nov-07 3:33
Gadjuka20-Nov-07 3:33 
QuestionAn introduction to bluetooth conection Pin
Strategic_Thinker16-Nov-07 1:23
Strategic_Thinker16-Nov-07 1:23 
AnswerRe: An introduction to bluetooth conection Pin
devzav16-Nov-07 1:48
devzav16-Nov-07 1:48 
QuestionHiding or Securing Connection String Pin
Christopher Stratmann16-Nov-07 1:12
Christopher Stratmann16-Nov-07 1:12 
AnswerRe: Hiding or Securing Connection String Pin
Vasudevan Deepak Kumar16-Nov-07 1:20
Vasudevan Deepak Kumar16-Nov-07 1:20 
AnswerRe: Hiding or Securing Connection String Pin
Ennis Ray Lynch, Jr.16-Nov-07 6:54
Ennis Ray Lynch, Jr.16-Nov-07 6:54 
Questionchange of icon Pin
tnaveen16-Nov-07 0:48
tnaveen16-Nov-07 0:48 
AnswerRe: change of icon Pin
Laubi16-Nov-07 1:01
Laubi16-Nov-07 1:01 
GeneralRe: change of icon Pin
tnaveen16-Nov-07 1:04
tnaveen16-Nov-07 1:04 
GeneralRe: change of icon Pin
Laubi16-Nov-07 1:10
Laubi16-Nov-07 1:10 
AnswerRe: change of icon Pin
Luc Pattyn16-Nov-07 3:16
sitebuilderLuc Pattyn16-Nov-07 3:16 
QuestionNeed to Send Emails to Mail Queue Pin
Satish - Developer16-Nov-07 0:30
Satish - Developer16-Nov-07 0:30 
AnswerRe: Need to Send Emails to Mail Queue Pin
Pete O'Hanlon16-Nov-07 0:33
mvePete O'Hanlon16-Nov-07 0:33 
GeneralRe: Need to Send Emails to Mail Queue Pin
Satish - Developer16-Nov-07 1:05
Satish - Developer16-Nov-07 1:05 

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.