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
37 views

Can't cancel repeat timer in GWT

I am trying to schedule a repeating timer in GWT, it will run every one milli second, poll for a certain event, if it is found satisfactory, do something and cancel the timer. I tried doing this: ...
1
vote
2answers
62 views

In GTK+ 2.24, create temporary dialog with fade out effect

I'm making a cross-platform program with GTK+ v2.24 and after a lot of things done, I bumped in a problem. This is what I'm attempting to do: 1) Pressing enter in a GtkEntry, fire an event (done with ...
0
votes
1answer
20 views

setInterval for individual functions

Trying to test level ups in a game. The idea is after a certain period of time a function gets called, however I don't want it to be called every (n) seconds I just want it called once: ...
2
votes
4answers
97 views

Do Legacy VB6 Timer Ticks stack or skip if previous tick is still running

We have a (very) Legacy application written in VB6 (15 years old?). The application contains a timer with 300ms interval. The Sub called when the timer ticks executes a batch of code that talks to ...
1
vote
1answer
59 views

I am creating a multi-threaded java application which simulates a persons spending pattern

/** * * * A small class to handle deposits and withdrawls from a bank account * */ package spendingsimulation; //import java.util.Random; public class BankAccount { public int ...
0
votes
1answer
18 views

creating a function blocker within a set period of time

I am working on a custom script for a room I run on plug.dj, and I have implemented auto message alerts for AFK, working and sleeping. So if you have your status set to AFK and somebody mentions you, ...
0
votes
1answer
64 views

Java - drawing image with Timer

I'm creating an animation that looks like this. I'd like the swirly icon on the left (which is an ImageIcon) to display for 3 seconds and disappear. However, the swirly icon does not disappear. ...
-2
votes
4answers
101 views

Can my use of System.Threading.Timer be more efficient

I´m looking for some advice about making my code more efficient. What I would like to do is to have a System.Threading.Timer that runs some job every hour or so, the job is not going to be very heavy ...
-13
votes
2answers
141 views

How to call a function every 2 seconds with a timer? [duplicate]

How to make the Timer in c#, to call a function every 2 seconds?? I Have a function CHECK(), in my code, that checks something, and I want to use a Timer that every 2 seconds it is going to call that ...
0
votes
2answers
52 views

Timeout for a method

My Program looks like below Main Program (Thread 1) Create multiple simple java threads (Thead 1.1, 1.2...) In each thread(1.1 or 1.2..) I'm doing some processing also calling one method which is ...
1
vote
1answer
117 views

What is best & Secure timer for online test application in asp.net C# Ajax timer or Jquery Timer?

I am creating a new application in asp.net 4.0 which contains an online test module, and the application is supposed to handle 10-20k students at a time. Now my confusion is what should i use here, ...
0
votes
1answer
32 views

Repeat a listbox that opens files

Hello I want my listbox playlist to repeat after last file is played. How do I reset the index so it repeats to the start of the listbox? Shownextimage handles the media one by one to show on the ...
0
votes
1answer
51 views

How to start a timer without any action performed?(java swing timer)

I'm reviewing for the final exam, and here is a practice problem that asking me to make a shape visible for half a second then invisible for half a second. I'm thinking of using timer in order to ...
0
votes
3answers
63 views

Timer delegate call says “The memory could not be read”

So here's the thing i have a function and a timer that has an interval of 10ms. void process() { //some heavy processing logic here } Now what i'm doing is that i have added this function to ...
2
votes
2answers
81 views

PHP Hit Counter… Can I Transform SESSION to COOKIE??

I have been working on this for awhile now. Made a PHP counter that gets the views on a front end page, and displays the Views on a backend(cms, etc.) page. index.php code: <?php function ...
0
votes
1answer
27 views

Turn of timer while video is playing?

is there anyway you can pause the timer if a movie is played? the reason why i'm asking is because I'm using a MediaElement that uses both images and videos and therefore I have to find a solution to ...
0
votes
1answer
36 views

Python Simulation Timer

I'm looking for a way, in Python, to set up a "timer" for multiple agents. My simulation is going to have many vehicles which will need to wait for independent time periods before performing ...
2
votes
1answer
134 views

Process.Start() hangs when running on a background thread

I've been troubleshooting all day. After doing some research and a lot of trial and error, it seems I've been able to narrow down the issue to the fact that my call to process.Start() doesn't work on ...
0
votes
1answer
23 views

change “speed” for few seconds

So I have an object that moves with "speed" now I set the code that when the object collides with another object the speed of the object decreases. I tried doing so by making the speed change and when ...
1
vote
2answers
78 views

Never ending while loop

Here is example from one C# book: // Timer02.cs - Displaying Date and Time // Using the Timer class. // Press Ctrl+C or 'q' folllwed by Enter to end program. ...
0
votes
1answer
28 views

Get callback of a javax.ejb.Timer

In a project I'm working on I need to display a list of Timers associated with a bean and display info about them. One of the options that's needed is to fire the event associated with a specific ...
0
votes
1answer
50 views

Where Can I put IF statement for working?

I have some ksoap web service in timer action which is working every half an hour if I did it well. One of them send whole table rows to sql server and it turns me 0 or 1 depends on correctly sending. ...
0
votes
1answer
41 views

Java: time to read sound from TargetDataLine and write to ByteArrayOutPutStream different sometimes

I have a thread where I am reading data from TargetDataLine (microphone) and writing it to a ByteArrayOutputStream. I have a little "timer" because I want to record sound for 10 ms and then pass the ...
-1
votes
0answers
57 views

How to sample a voltage with a sampling interval of 10 seconds using Arduino [closed]

I want to sample an analog voltage with a sampling interval of 10 seconds (precision of sampling interval is important). How can I do this using an Arduino? How can I get an accurate sampling ...
5
votes
1answer
61 views

JavaScript, jQuery and 'this' : what's going on here?

This is more a question about what's going on in my code. It works, but I need a little bit enlightenment... I'm using jQuery to create an event listener on an text input element. The HTML would ...
1
vote
0answers
70 views

How to get a Java timer to restart on keypress?

I'm trying to make a tetris game in java and I have a pretty good idea of how to make the game work, i'm just stuck at figuring out how to have the blocks fall every x milliseconds. This is my first ...
0
votes
2answers
73 views

AS2: Function not calling, using timer— and myFunction();

I'm programming a game for fun. I'm using a timer that when hits 0 it's supposed to call functions (which I think is how games work, right?). Anyway, myFunc; does not do anything at all when timer ...
1
vote
1answer
44 views

How to run a python loop until a user input? Timer format

I'm coding a timer that counts minutes and seconds, and I want the timer to be able to be paused when you press enter - However, I'm using a while loop to make the timer actually count, and adding a ...
0
votes
1answer
16 views

Using SwingWorker to set a coordinate

Right now I am absolutely stuck with a project involving WorldWind, but its a general issue with the SwingWorker and swing Timer Classes. Basically I have a shape on a globe, that has a LatLon ...
1
vote
1answer
53 views

How to start using javax.swing.Timer if I already have my own Timer class?

I made a class called Timer with some custom actions. Then I found out that there is a class javax.swing.Timer that does just what I need. So I renamed "My" Timer class to another name (using ...
0
votes
1answer
40 views

Trying to fix a Javascript Countdown. I have no idea what I'm doing

HELP ME STACKOVERFLOW KENOBI, YOU'RE MY ONLY HOPE. So last week I asked this question: I need to make a timer that counts down to 4:30pm. So far, I can get it to either 4pm or 5pm, but not any ...
-1
votes
0answers
26 views

Threads in VB.Net excemption Errors [closed]

I am new in threads, want to implement them in my system, can someone help: Dim connStat As System.Threading.Thread = New System.Threading.Thread(AddressOf check_connection) Function ...
0
votes
1answer
57 views

High precision timer in C# for synchronization objects time-out

I have something resembling the following code: public void acquireReaderLock(int nmsMaxWait) { //'nmsMaxWait' = timeout in milliseconds if(_mutex.WaitOne(nmsMaxWait)) { //Need ...
0
votes
0answers
16 views

Is it possible to stop a timer inside anonymous function provided for its TimerCallback?

I am trying to implement a timer loop to retry an action 5 times and then the timer should stop. I want to use an anonymous function for the TimerCallback. However I am not sure if I can access the ...
0
votes
1answer
58 views

System clock timer with Javascript

I'm trying to use the system clock to make a simple animation in Javascript. I want to cycle through an array so that [0],[1],[2]... are called at 500ms intervals. Using an example from a previous ...
0
votes
1answer
35 views

Why is minimum Threading.Timer interval 1ms despite timeBeginPeriod(1)

The following snippet [DllImport("winmm.dll", EntryPoint = "timeBeginPeriod")] public static extern uint TimeBeginPeriod(uint uMilliseconds); static void Main(string[] args) { ...
0
votes
0answers
67 views

Java Swing + Timer? Moving a line across JPanel

What I'm trying to do is simple. I have a JLayeredPane with two panels inside of it. Panel 2 (higher Z index) has a transparent background and only displays a Line2D element that goes from Y = 0 to Y ...
0
votes
4answers
56 views

Updating TextView with clock

I have been trying to create a program that will output a working digital clock that will allow me to quickly access the date and time. I have the code to parse the time, however, I'm having ...
0
votes
2answers
24 views

Timer or doWakefulWork crash when attempt to set/use activity

I assume the problem stems from the same thing. Whether i call this sub from a fired timer or a doWakefulWork, i get a crash... TextView Past = (TextView) ((Activity) ctx).findViewById(R.id.past); ...
0
votes
1answer
44 views

NullPointer and java.util.Timer$TimerImpl.run

I really do not understand what is going on here. I am just writing an android app to collect Accelerometer data. It keeps giving me this error package com.thawda.mm; public class RCService extends ...
1
vote
1answer
67 views

Boost Timer 24 hour format

I'm using boost::timer::cpu_timer to calculate the "user process time" of an algorithm like so: boost::timer::cpu_timer timer; boost::timer::nanosecond_type userTime = timer.elapsed().user; My ...
1
vote
0answers
13 views

Can't get keyListener to work while Timer is running

Hello people of stack overflow, my program has a driver class Frogger(), a JPanel class that calculates everything, pulls together all the necessary panels, and implements keyListener called ...
1
vote
3answers
98 views

time reminder aplication C#

I am tring to make aplication in C# - visual studio 2010. This application is something like reminder. You put the note into text box and use DateTimePicker to select when you need remind this. ...
0
votes
1answer
68 views

TimerCallback not returning value C#

I am using System.Threading.Timer to create a timer that prints a string to a serial port and then reads from another serial port every second. I am trying to do this by sending arguments to my ...
1
vote
2answers
61 views

Windows Service: The calling thread cannot access this object because a different thread owns it

Trying to convert XML files using XSL and printing the output. However, receiving the following message: The calling thread cannot access this object because a different thread owns it. To set an ...
0
votes
1answer
40 views

access to model specific registers, IA32_APERF / IA32_MPERF, to measure actual CPU frequency

As far as I understand to measure the actual operating CPU frequency I need access to the model specific registers (MSR) IA32_APERF and IA32_MPERF (Assembly CPU frequency measuring algorithm). ...
2
votes
1answer
46 views

How to generate requests at a “requests/sec” target rate?

Say I have a target of x requests/sec that I want to generate continuously. My goal is to start these requests at roughly the same interval, rather than just generating x requests and then waiting ...
0
votes
1answer
42 views

How do I wait for a timer to stop before executing code?

I have a Timer that is used in a class that extends JPanel for an animation, and an ActionListener listens to it and makes actionPerformed run, which does repainting and stops the timer when needed. ...
-4
votes
1answer
94 views

C# how to show message after specific time period

In my project I would like to show message or call methods after 5 minutes for example, If the users didn't click on specific button, I wrote this code Boolean flage = false; private void ...
0
votes
2answers
67 views

How to pause and resume a javascript timer [duplicate]

I have this timer which works fine, but i need to be able to pause and resume it after that. i would appreciate it if someone could help me. <html> <head> <script> function ...

1 3 4 5 6 7 106