473,513 Members | 2,709 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

System.Timers.Timer.Tick does not exist

In a Codeproject tutorial,
http://codeproject.com/cs/miscctrl/f...&select=785273
System.Timers.Timer.Tick is used, but apparently no such 'property'(?)
exists. What is the correct coding?
// Code --------------------------------

private System.Timers.Timer rotateTimer = null;

public void StartRotation(bool state)
{
rotateTimer = new System.Timers.Timer();
rotateTimer.Tick += new EventHandler(OnTimedEvent);
rotateTimer.Interval= 500;
rotateTimer.Enabled = true;
}

// -------------------------------------
thank you very much!
, Teis
Nov 16 '05 #1
8 7487
Teis Draiby <te*************@draiby.com> wrote:
In a Codeproject tutorial,
http://codeproject.com/cs/miscctrl/f...&select=785273
System.Timers.Timer.Tick is used, but apparently no such 'property'(?)
exists. What is the correct coding?


Well, it's not a property, it's an event. However, it's an event on
System.Windows.Forms.Timer, not System.Timers.Timer.

Looks like that's a bug in the web page - I can't be bothered to sign
up, so I don't know whether the same bug is also in the downloadable
sources.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #2

"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
Teis Draiby <te*************@draiby.com> wrote:
In a Codeproject tutorial,
http://codeproject.com/cs/miscctrl/f...&select=785273 System.Timers.Timer.Tick is used, but apparently no such 'property'(?)
exists. What is the correct coding?


Well, it's not a property, it's an event. However, it's an event on
System.Windows.Forms.Timer, not System.Timers.Timer.

Looks like that's a bug in the web page - I can't be bothered to sign
up, so I don't know whether the same bug is also in the downloadable
sources.


Build Succeeded
You saved my tutorial. The code is wrong the downloadable file as well.
Maybe it is .NET beta style?

Thank you for your valuable help
,Teis
Nov 16 '05 #3
Teis Draiby <te*************@draiby.com> wrote:
Build Succeeded
Goodo :)
You saved my tutorial. The code is wrong the downloadable file as well.
Oh dear :(
Maybe it is .NET beta style?


It looks like it was submitted during the beta, yes. Maybe you should
contact the author to get it corrected?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #4
> It looks like it was submitted during the beta, yes. Maybe you should
contact the author to get it corrected?


The correction is now posted in the discussion part (there was no email
available).

thanks, Teis
Nov 16 '05 #5
Teis Draiby <te*************@draiby.com> wrote:
In a Codeproject tutorial,
http://codeproject.com/cs/miscctrl/f...&select=785273
System.Timers.Timer.Tick is used, but apparently no such 'property'(?)
exists. What is the correct coding?


Well, it's not a property, it's an event. However, it's an event on
System.Windows.Forms.Timer, not System.Timers.Timer.

Looks like that's a bug in the web page - I can't be bothered to sign
up, so I don't know whether the same bug is also in the downloadable
sources.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #6

"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
Teis Draiby <te*************@draiby.com> wrote:
In a Codeproject tutorial,
http://codeproject.com/cs/miscctrl/f...&select=785273 System.Timers.Timer.Tick is used, but apparently no such 'property'(?)
exists. What is the correct coding?


Well, it's not a property, it's an event. However, it's an event on
System.Windows.Forms.Timer, not System.Timers.Timer.

Looks like that's a bug in the web page - I can't be bothered to sign
up, so I don't know whether the same bug is also in the downloadable
sources.


Build Succeeded
You saved my tutorial. The code is wrong the downloadable file as well.
Maybe it is .NET beta style?

Thank you for your valuable help
,Teis
Nov 16 '05 #7
Teis Draiby <te*************@draiby.com> wrote:
Build Succeeded
Goodo :)
You saved my tutorial. The code is wrong the downloadable file as well.
Oh dear :(
Maybe it is .NET beta style?


It looks like it was submitted during the beta, yes. Maybe you should
contact the author to get it corrected?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #8
> It looks like it was submitted during the beta, yes. Maybe you should
contact the author to get it corrected?


The correction is now posted in the discussion part (there was no email
available).

thanks, Teis
Nov 16 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
258
by: Teis Draiby | last post by:
In a Codeproject tutorial, http://codeproject.com/cs/miscctrl/first_control.asp?df=100&forumid=1690&select=785273 System.Timers.Timer.Tick is used, but apparently no such 'property'(?) exists....
4
464
by: Bilo | last post by:
I have a Windows Forms Class MainGUI I have declared MainGUI maingui; public System.ComponentModel.Container components = new Container(); in the Class I call another class MediaDriver with...
10
2669
by: WhiteSocksGuy | last post by:
Help! I am new to Visual Basic .Net (version 2002) and I am trying to get a System.Timers.Timer to work for me to display a splash screen for about two seconds and then load the main form. I have...
2
8949
by: User | last post by:
Hi, What is the best way to release all resources holded by the Timer (myTimer from class System.Timers.Timer)? Is it: 1- myTimer.dispose 2- myTimer.enabled = false 3- myTimer.close
2
2188
by: cntams | last post by:
All, I have a Windows Service and it has one System.Timers.Timer that fires every 500 milliseconds. Now I have noticed that there's a bug in System.Timers.Timer when it's being used combined with...
4
7752
by: TheJediMessiah | last post by:
Hi, I have a number of objects for which I want to create a timer for. So for each object I would like to have a timer which runs at a different interval. For a single timer I know how to...
9
2636
by: archana | last post by:
Hi all, I want to know about interval of timer. I am using timer in windows service.I head somewhere that when i set interval property of timer while setting interval, restart time of Pc is...
5
12171
by: Tony Gravagno | last post by:
I have a class that instantiates two Timer objects that fire at different intervals. My class can be instantiated within a Windows Form or from a Windows Service. Actions performed by one of the...
2
11095
by: chandu | last post by:
Hello, can u please explain the difference between the two System.Timers.Timer events i want to use the timer in windows service.. please clarify.. thank u chandu
5
4944
by: Brian | last post by:
Hello all. I have a simple application that I was using to test and understand the System.Timers.Timer and noticed that when I stop the application, on occasion, it throughs the following...
0
7254
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7153
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7432
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7094
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5677
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4743
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3230
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1585
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
796
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.