473,761 Members | 5,758 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Timer driving me nuts

Hi

I have a timer on my form. The problem is no matter how large an interval I
set, the timer_tick event always gets called very fast. What am I doing
wrong?

Thanks

Regards
Aug 28 '06 #1
12 2124

Hey John,
R u setting the timer interval at runtime after starting the timer?
If that is the case, set the timer interval before starting the timer.

Hope it helps.
John wrote:
Hi

I have a timer on my form. The problem is no matter how large an interval I
set, the timer_tick event always gets called very fast. What am I doing
wrong?

Thanks

Regards
Aug 28 '06 #2
I have set it at design time and it currently stands at 600000. Still too
fast almost like 1 second. I am running my process in the Timer_Tick event.

Thanks

Regards

"IdleBrain" <in************ **@yahoo.comwro te in message
news:11******** **************@ i3g2000cwc.goog legroups.com...
>
Hey John,
R u setting the timer interval at runtime after starting the timer?
If that is the case, set the timer interval before starting the timer.

Hope it helps.
John wrote:
>Hi

I have a timer on my form. The problem is no matter how large an interval
I
set, the timer_tick event always gets called very fast. What am I doing
wrong?

Thanks

Regards

Aug 28 '06 #3
Hello John,

If I remember correctly the Timer.Interval will accept a large numer, like
600000, however the only valid numbers are 0 through ~32000. Interval is
defined in milliseconds.

-Boo
I have set it at design time and it currently stands at 600000. Still
too fast almost like 1 second. I am running my process in the
Timer_Tick event.

Thanks

Regards

"IdleBrain" <in************ **@yahoo.comwro te in message
news:11******** **************@ i3g2000cwc.goog legroups.com...
>Hey John,
R u setting the timer interval at runtime after starting the timer?
If that is the case, set the timer interval before starting the
timer.
Hope it helps.

John wrote:
>>Hi

I have a timer on my form. The problem is no matter how large an
interval
I
set, the timer_tick event always gets called very fast. What am I
doing
wrong?
Thanks

Regards

Aug 28 '06 #4
Can we see the code?
Aug 29 '06 #5
Got it now thanks. My only problem now is to set the interval to about 5
minutes. If the highest interval the timer can take is 32000 (32 seconds?)
then how does one get round it?

Thanks again everyone.

Regards

"Stuart Nathan" <st***********@ homecall.co.ukw rote in message
news:en******** ******@TK2MSFTN GP03.phx.gbl...
Can we see the code?

Aug 29 '06 #6
JR
from the help:
The interval can be between 1 and 64,767, inclusive, which means that
even the longest interval will not be much longer than one minute (about
64.8 seconds).

now if you need a larger timer try the following.

Add a static variable.

rease the variable each time you enter the sub. When you have the seconds
you need (if - end if) do your stuff

Jan
"John" <Jo**@nospam.in fovis.co.ukschr eef in bericht
news:Or******** ******@TK2MSFTN GP05.phx.gbl...
Got it now thanks. My only problem now is to set the interval to about 5
minutes. If the highest interval the timer can take is 32000 (32 seconds?)
then how does one get round it?

Thanks again everyone.

Regards

"Stuart Nathan" <st***********@ homecall.co.ukw rote in message
news:en******** ******@TK2MSFTN GP03.phx.gbl...
>Can we see the code?


Aug 29 '06 #7
I've never heard of a 32/64/whatever sec limitation (except on Windows 3.x).
Both of the following works fine on my machine:

Timer1.Interval = 60000 '1 minute interval
Timer1.Start()

Timer1.Interval = 300000 '5 minute interval
Timer1.Start()
According to the docs for SetTimer (that System.Windows. Forms.Timer uses)
the maximum value for the interval is USER_TIMER_MAXI MUM. That constant is
defined in winuser.h as 0x7FFFFFFF

There must be something else that's wrong in this case. Show your code

/claes

"John" <Jo**@nospam.in fovis.co.ukwrot e in message
news:Or******** ******@TK2MSFTN GP05.phx.gbl...
Got it now thanks. My only problem now is to set the interval to about 5
minutes. If the highest interval the timer can take is 32000 (32 seconds?)
then how does one get round it?

Thanks again everyone.

Regards

"Stuart Nathan" <st***********@ homecall.co.ukw rote in message
news:en******** ******@TK2MSFTN GP03.phx.gbl...
>Can we see the code?


Aug 29 '06 #8
I think there is a misunderstandin g between the readers.
There are 2 types of timers available:
1. The timer control (System.Windows .Forms.Timer)
2. The timer class (System.Timers. Timer)

The first one is a control, and has a limititation of 64,767 seconds.
The second one is a class, and does not have this limitation.
Claes Bergefall wrote:
I've never heard of a 32/64/whatever sec limitation (except on Windows 3.x).
Both of the following works fine on my machine:

Timer1.Interval = 60000 '1 minute interval
Timer1.Start()

Timer1.Interval = 300000 '5 minute interval
Timer1.Start()
According to the docs for SetTimer (that System.Windows. Forms.Timer uses)
the maximum value for the interval is USER_TIMER_MAXI MUM. That constant is
defined in winuser.h as 0x7FFFFFFF

There must be something else that's wrong in this case. Show your code

/claes

"John" <Jo**@nospam.in fovis.co.ukwrot e in message
news:Or******** ******@TK2MSFTN GP05.phx.gbl...
>Got it now thanks. My only problem now is to set the interval to about 5
minutes. If the highest interval the timer can take is 32000 (32 seconds?)
then how does one get round it?

Thanks again everyone.

Regards

"Stuart Nathan" <st***********@ homecall.co.ukw rote in message
news:en******* *******@TK2MSFT NGP03.phx.gbl.. .
>>Can we see the code?

Aug 29 '06 #9
John wrote:
Got it now thanks. My only problem now is to set the interval to about 5
minutes. If the highest interval the timer can take is 32000 (32 seconds?)
then how does one get round it?

Thanks again everyone.

Regards
How about storing the time when you start then let the timer check every
second orso to check the timespan between the current time and the
stored start time.


--
Rinze van Huizen
C-Services Holland b.v
Aug 30 '06 #10

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

Similar topics

6
1610
by: Keiron Waites | last post by:
Please see the problem in action here: http://www.leadbullet.biz/contact.php If you mouse over the fields, you will see that text is shown on the right. The text makes the other fields move when it is shown - even though the width of the text is less than the width of the field. WHY? This is driving me nuts - please help! TIA,
12
1612
by: Marty | last post by:
It seems all of the sudden that user controls that contain images are referencing image sources relative to the document that I drop the control on. This obviously does not work beacuase the image source is relative to the user control, not necessarily the form. Can anyone tell me why this would be the case?
0
983
by: Simon Harris | last post by:
Ok, this really is driving me nuts!!! :( 'All' I am trying to do is get the value of a named element. My XML doc is: <?xml version="1.0" encoding="utf-16" standalone="yes" ?> - <Page> <Title>Test</Title> <MetaKeywords>Test</MetaKeywords>
4
1658
by: trond | last post by:
Hello all, Before I start I'd like to point out that I am a complete novice when it comes to asp.net - My background is in network and operating systems, and although I have been doing a bit of hobby programming in vb.net and web programming in asp/vbscript in the past, I am pretty much a beginner at asp.net. What I'm trying to do, is to take the "PersonalHomePage" starter kit that MS supplies with VS2005 and tweak it a bit, to make it...
3
1977
by: Kris Palmer | last post by:
hi, can somebody explain this problem? it's driving me crazy! i have a requirement to dynamically create a variable quantity of timers with associated start button based on the contents of a database. if i create system timers dynamically, i cannot reference them from the start button click event handler. the build error is ' <timer name> not declared> ---- however, if i declare the system timers outside runtime code, everything works...
2
1512
by: mitsura | last post by:
Hi, I need to read a simle XML file. For this I use the SAX parser. So far so good. The XML file consist out of number of "Service" object with each object a set of attributes. I read through the XML file and for each "<Service>" entry I create a new service object. When I am in the "<Service>" part of the XML file and I encounter
4
2473
by: mattlightbourn | last post by:
Hi all, I have a problem which has been driving me nuts. Crosstab queries! I have a database witch a few different tables to do with garment manufacturing. I have a table for a client account, garment type (Jacket, skirt, etc), client sizing spec and descriptives (measurement names i.e: Shoulder to cuff, inside leg, etc), available sizes (ie. 4,6,8,10,12,14,16,18,20,S,M,L,SM,ML,One) and pattern adjustments (if size 10 is the base, the...
3
2287
by: DuncanIdaho | last post by:
Hello experts IE 7.0.5730.11 Opera 9.27 Firefox 2.0.0.14 This problem only occurs in Opera and Firefox (amazing, IE does something right, or maybe not) Anyway, the problem is that when I put an image in a <divor a <td>
4
1683
by: damjanovic | last post by:
Hi all, I have a DB which is designed to have 1 admin and several users on at the same time. The users and admin all work with the same form, called frmOrders, which is a continuous form that lists out, in real time, orders which the users enter. I have a timer form called frmTimer running (hidden) in the background which updates frmOrders every 2 seconds and checks if a new order has been added. If yes, a MsgBox pops up on the admin's screen...
0
9377
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10136
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9989
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8814
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7358
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6640
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5405
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3913
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 we have to send another system
3
3509
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.