Timer is a control that has the functionality to trigger a user defined action at regular intervals as configured by the user.

learn more… | top users | synonyms (1)

1
vote
1answer
11 views

Qt4: Unresolved timer events

A mini sample file main.cpp: #include <iostream> #include <QCoreApplication> class MyApp : public QCoreApplication { private: int m_idtimer; public: MyApp(int nargs, char* ...
0
votes
0answers
5 views

why does interrupttng the thread get the new timeout in com.android.server.ResettableTimeout?

In com.android.server.ResettableTimeout, it plans to start a timer. 52 public void go(long milliseconds) 53 { 54 synchronized (this) { 55 mOffAt = ...
0
votes
2answers
42 views

PHP / Jquery Clock + countdown

I just wrote another question but It was not well writed and understandable at all, here I'll paste the work I've done atm, and my questions: I want to show a clock on my webpage (it's based in ...
0
votes
2answers
52 views

Waiting until a timer runs out and executing another timer

I'll be short and to the point. I basically need a way I can take a timer, check when the timer is up and execute something at the end of it, then loop it. For example (this code isn't serious, just ...
0
votes
3answers
28 views

How do you use one thread to do multiple timed actions rather than multiple timers

The overlook of my project is creating an interactive tutorial. I am playing a sound clip and at certain times during the sound clip i want certain actions to take place(Ex. Highlight a button). I ...
0
votes
0answers
35 views

Event-driven countdown timer for a web application

For a personal project, I am looking to create an online application that allows players to draft characters from certain video games onto a team. This is very much like drafts in fantasy sports ...
0
votes
1answer
41 views

Perform function with time interval SDL/c++

I want a function to be called every third second. In objective-c I would do like this: NSTimer timer = [NSTimer timerWithInterval:3 sel:@selector(my_function)...]; How do I do this with SDL and ...
0
votes
0answers
14 views

ATMEGA8535 on 20 MHz generating 1MHz pulse fast pwm

I have a SID (that's an audiochip which needs to run @1MHZ) chip connected to my atmega8535. The mcu is running @20MHz. The sid is running @1MHz via a resonator. Now I'd like to change the resonator ...
0
votes
1answer
28 views

Using a single Android handler repeatedly

I have been trying to create a simple Simon memory game which I completed but the code was not professional, I am redoing it and hoping to learn how to do it right. The only part I cannot figure out ...
0
votes
0answers
17 views

Better timer than mpi_Wtime

My mpi_wtime has resolution of 1e-6 seconds which is not good enough for me? What are pros and cons of using other timers like gettimeoftheday?
1
vote
1answer
29 views

Using System.Threading.Timer in Compact Framework

I am using a System.Threading.Timer in a CF project (Windows Embedded CE 6.0), VS2005 C#, .NET 2.0. This timer is desired because there is no possibility of reentrancy when used like this: ...
4
votes
1answer
31 views

How to add a wait timer on an input field keyup event?

I have an input field, and it has a keyup event: $(document).ready(function() { $('#SearchInputBox').keyup(function() { DoSearch($(this).val()); }); }); How can I add a delay time, ...
-4
votes
1answer
61 views

Null Pointer - Timer + Array of objects [closed]

I have discovered were the error was, was declaring the array as laneCar[] in one part of my code and laneCars[] elsewhere which was causing null pointer errors.
2
votes
1answer
90 views
+50

Issues with Timers in Assembly [ATmega8]

I've written a programm that Outputs 2 different sounds, taken from 2 Potientiometers. The issue with that is, that a sound is generated by turning the beeper on and off with a delay in it, which is ...
0
votes
1answer
66 views

Java StopWatch timer won't stop

I got a StopWatch class, I want to implement the Lap function When the Run/Stop button is pressed, a timer begins counting on the display. If the Run/Stop button is pressed again, the timer stops. ...
0
votes
2answers
75 views

How to set timer in C#?

I am making a program in C# that will ping "google" after every 15 minutes. If the ping is successful, it will then again check(ping) after 15 minutes and so on...If the ping is not successful, it ...
0
votes
1answer
25 views

Android image timing issues

I have an Android app that needs to display images and videos in a loop, it has no problem with playing the videos, but when it gets to the images the screen goes blank and nothing happens. the ...
0
votes
2answers
39 views

How can i start a timer like call log duration when activity start?

Let the question is i want to start a timer which is initialize when the activity is brought to front. I have a text view and i want to display a time start with 00:00 and increase in every tick. How ...
0
votes
1answer
29 views

WPF delay a function that fills a table

I have a Table control, and I want to fill it with colors, with a delay of X milliseconds between each paint. This a very general example of what I am doing (It's longer, but I deleted the ...
-2
votes
0answers
93 views

C++ example implementation of Timer

I'd need to have a TIMER that calls a function every n seconds? As in C #, Java, etc. .. There is something ready? I can not use boost. Some examples?
1
vote
0answers
28 views

Where is seconds parameter being passed into method and stored? Converting seconds to string 00:00:00

I'm getting error: Timer should initialize to 0 seconds time_string should display 0 seconds as 00:00:00 (FAILED - 1) Failures: 1) Timer time_string should display 0 seconds as ...
-1
votes
0answers
63 views

How to add time to a countdown timer to iOS Project

I have a game where is uses a countdown timer and when the timer is up, you are brougt to a Game over view. I want to add a feature were if they tap a button, it will add like 1, 2 or 3 more seconds ...
0
votes
0answers
7 views

3 paramter of timers

I have dspic30f6015. The speed of the pic is 7.3MHz i want to use a 4 timers of it(it has 5). Timer 1 is a 16 bit TImer 2,3,4,5 is a 32 bit There is 3 definitions that i need to write in my code: { ...
0
votes
1answer
35 views

c# moving rectangles vs moving panels on timer.tick (as speed)

I have a timer. When it ticks , by calculating based on formulas, the position of 12 panels changes. The problem is, although timer's interval is 1 milisecond, the moves are very slow.There are many ...
1
vote
3answers
49 views

Java - Error on use of Timer

So I have googled some minutes how to use the timer and found some helpfull threads here. But when I want to use the suggested code Eclipse shows me always an error. int delay = 1000; //milliseconds ...
0
votes
1answer
50 views

How to in Visual C++ have a simple timer for precise execution seconds elapsed display

I use "time.h" in my program for have the execution time elapsed from a point to another point of code: #include <time.h> ... //clock clock_t avvio; clock_t fine; ...
0
votes
2answers
34 views

is this right for wait() and notify() and how to fix

I am writing a simple android application to demonstrate wait() and notify() methods. The application contain 1 button and 1 textView, the textView will show a timer and button will show a dialog ...
-1
votes
1answer
77 views

Android: java.lang.runtimeexception unable to instantiate activity componentinfo nullpointerexception

I'm trying to get a timer to work, starting and stopping on button click events. I seem to be nullpointer referencing somewhere but i can't find the problem in my code. It would be really great if ...
0
votes
0answers
21 views

JBoss 5.1 GA & EJB 3.0 : Configure ejb2-timer-service.xml to support both persistence and non persistence EJB timers

I want to configure ejb2-timer-service.xml to support both persistence and non persistence timers, To do this, I have made the following change in the ejb2-timer-service.xml. In the EJB class, I ...
0
votes
1answer
13 views

setInterval with delay on first time run

I need to create delay for first time setInterval() function when page/window load. How to make it? Consider that I have a slider with setInterval() showing images, but in first start slider I need ...
0
votes
1answer
21 views

FIM execute script doesn't work

I work with a raspberry pi dabian weezy. i need help whit FIM if in a bash i put: fim -E mySHcode.sh img.jpg I expecting with this that fim execute before mySHcode, and after view img.jpg. but ...
2
votes
1answer
39 views

My scanner/terminal window stops functioning after one repeat

I am currently working on a tower defense project on gridworld (not sure if that is significant). I have a timer that calls a method (TowerPlacer) from my main class to receive user text input via ...
0
votes
0answers
50 views

Writing a simple user input program with timer in R

I'm trying to apply the setTimeLimit() function in R to a simple program where the user provides an input number within 2 seconds, otherwise the program breaks out of an infinite loop (this is ...
0
votes
3answers
43 views

Countdown timer replacing div element

I am trying to learn some java script doing a work interview evaluation project. The issue is that I have a timer, when the timer reaches zero it should replace the div containing it with another div ...
0
votes
1answer
25 views

Kill fbi frame buffer process, after x time

I have a problem with a sh script. i'm using raspberry, and in my script i wont to execute with fbi frame buffer an image for 10 seconds. after 10 seconds i want that my script run other sequencial ...
1
vote
0answers
21 views

Pass value into SharePoint timer job

I have a SharePoint timer job and in the Execute method I need to detect if the current execution was scheduled or if the timer job was run manually via Central Admin. Is there a way to pass in a ...
0
votes
0answers
56 views

How to take 30 screenshots in a second in an iOS device?

In my iOS app, I am using NSTime to invoke a method which takes screenshot of the device screen. I am taking 30 screenshots per second. On simulator its working fine (as the processor of Mac is far ...
0
votes
8answers
65 views

Using a timer in a while true loop in Python

I have a problem in managing a infinite while loop in Python, in which I would insert a timer as a sort of "watchdog". I try to explain better: the script has to listen on a serial channel and wait ...
0
votes
3answers
37 views

Animations and update in Android

I'm having an issue with my Android application. I have a button and a textView. When the button is clicked, the textview move with a translate and a rotate, then a Timer is set to change the content ...
0
votes
0answers
19 views

Removing the background of a frame animation in Android

How can I remove the background of a frame animation (or set it to be transparent)? When I set the background colour in the xml layout file to be transparent, it turns up black when running it. ...
0
votes
5answers
63 views

The DateandTime, regarding seconds

Hello Guyz i have this small problem regard the DateandTime this is my Code labelDateAndTime.Text = DateTime.Now.ToString("yyyy,MM hh:mm:ss tt"); my problem here is that the time is not ...
0
votes
2answers
30 views

Count timer for a Quizz on VBA

I'm currently trying to install timer in VBA - I'm working on a quizz. There are several questions to answer. What I would I like to know is the time that someone spends answering each question. So ...
-1
votes
0answers
24 views

Repeat a method in C++ each minute [closed]

i'm currently making an obligatory project for my uni. The project is about an "Inteligent House". In this house the clock "ticks" and some actions may have to be made. The thing is, i have no clue ...
3
votes
2answers
34 views

Change Timer schedule scheduleAtFixedRate

I have TextView to update time frequently that is working fine, but the problem is that I want to change schedule time for different conditions but I am unable to change schedule time. It continue to ...
2
votes
2answers
23 views

Stop Timer() in custom TextView

I am using customized TextView to update time frequently in ListView, that is working correctly. The problem is that timer continuously repeating its task but activity has benn finished. Please ...
1
vote
2answers
26 views

Change image visibility on timer.elapsed event

I have this code which makes my image visible and starts timer: image1.Visibility = Visibility.Visible; System.Timers.Timer timer = new System.Timers.Timer(2000) { AutoReset=false}; timer.Enabled = ...
1
vote
1answer
28 views

Resetting time.clock()

I'm writing a basic game where you use the mouse to dodge stars, but I can't get a certain part to work properly. I'm trying to make it so that after 10 seconds of playing you beat the stage and if ...
0
votes
4answers
48 views

difference between countUp() and countUp [duplicate]

I have a script that counts up the number in a box (actually, in this exercise -> http://jqexercise.droppages.com/#page_0022_ ) each 1 second like this. var target = $("#target input"); var countUp = ...
0
votes
1answer
64 views

Implementing a Timer in Python

General Overview I have medium size django project I have a bunch of prefix trees in memory (as opposed to DB) The nodes of these trees represent entities/objects that are subject to a timeout. Ie, ...
0
votes
1answer
36 views

Should I use a Timer or setInterval to periodically get locations in Android?

I have seen some discussion on StackOverflow regarding using a Timer to periodically initiate a getLocation call for an Android App. I am not sure whether this approach is still up to date, because ...

1 2 3 4 5 110