Tagged Questions
3
votes
3answers
76 views
Format text to date/time format c#
I created a windows 8 app that will have a countdown timer. I have the code for the timer and it works fine, but instead of counting down from 120 seconds I want it to be displayed as 2:00 minutes and ...
0
votes
0answers
44 views
Python: [Help] Best use of asynchronous timer (Non Blocking Timer)
My question is if I have a thread program that runs in an infinite loop and each loop does a simulation step, at every loop there might be a request for timer to do something. This sounds easy but the ...
0
votes
0answers
56 views
Python: Hardware Timer or Software Timing Only?
I wish to know if there exist a hardware timer library in python that is a timer that expires after a given period and cause an interrupt instead of the time.time method which basically polls for ...
1
vote
2answers
46 views
Action Script 3. Timer MM:SS doesn't work
I'm creating app and I need to show game time MM:SS format. But I don't know why timer doesn't wrok It shows 0:00.359 (359 of miliseconds) and not change. Where is the problem? I can't find It. Thank ...
4
votes
1answer
133 views
Action Script 3. How to count game time?
I'm creating Flash "memory" game, Idea to discover 2 equal cards. I need to add "Timer" in top of window which count in how many seconds all cards will be descovered.
Here is my code:
package
{
...
2
votes
2answers
94 views
how to run while loop for some milisecond in linux kernel? [duplicate]
i need to do some polling in Linux kernel for continues some time so i need to design while loop that exits after some milliseconds interval. So how can i do that?
I have though to use gettimeofday() ...
0
votes
1answer
83 views
Execute something only when some time has been elapsed
This is kinda hard to explain for me but look:
I made a MMORPG server launcher wich has a start button, whe you click it a little window pops up and asks you to vote for the server and then you can ...
0
votes
0answers
22 views
Weird time-script behavior, not showing all the time
i hope someone can help me with this. i'am making a website where users can add tasks, when a task is added the now() time is saved into the database, and a "timer" is shown in the actual page ( for ...
4
votes
3answers
112 views
Java - How to measure a time out
I am making a ping program using Java sockets. One bug in my program is that sometimes it will not connect and will just sit there for ever. So I am trying to add a timeout (after twenty seconds) and ...
0
votes
2answers
161 views
How to silence android phone based on set time
I'm trying to write a program that will silence a phone based on a time. So for instance, I press a button the I can set a start time and end time. At that start time the phone will silence. At that ...
0
votes
1answer
35 views
Hi! I want to make my program display periodically pieces of text. Something as a “loading bar”.
my name is Alvaro and I'm programming in c++ with notepad++ and cygwin (on windows).
I want to make a "loading bar" for my program. I don't intend to do it a real loading bar, only pieces of text ...
1
vote
2answers
286 views
C++, mingw and clock_gettime doesn't compile
I'm having quite a bit of difficulty compiling some Linux C++ code using g++.exe from minGW.
Specifically, it is unable to understand this code:
struct timespec now;
...
1
vote
0answers
50 views
Server-to-multiple-client system timer to keep track of messages
I have a multiple-client-to-server system, where messages sent from client x is processed b the server before finally being sent onto its destination client y. This processing involves pushing ...
3
votes
1answer
49 views
Python time.time() reliability in concurrent programs
I'm writing a simulation for a token ring LAN and trying to run a timer in a separate thread to my main program to check for a time out on receiving an "alive status" from the monitor. I'm starting ...
0
votes
4answers
63 views
Time Schedule Error
Please have a look at the following code
public class Test {
public Test()
{
Timer timer = new Timer();
timer.schedule(new TimerTask(){
public void run()
{
...
0
votes
1answer
57 views
Android Integer as timer wait time
I am trying to make timer wait time to change based on users selection. My timer is working but variable for setting time is not. Formula for waiting ime is ((60/bpm)*1000)-190 and for bpm=60 is give ...
0
votes
1answer
39 views
Using time to determine what instruction is carried out - android
Is there a way to use a timestamp or other feature to determine what action is carried out?
e.g. when a button is clicked 'A' is performed unless the button has been clicked within the last second, ...
0
votes
2answers
78 views
How to set Notification on time
Hey Guys, i created the class and now I want to set the Notification on time.
For example if someone clicks the button the Notification should be shown ten minutes later.
Code
TextView txtV;
...
-1
votes
4answers
249 views
Running a task every day at Midnight
I'm creating a Java program that runs as a server. Every night at midnight, I want it to perform a certain task (namely, to launch a new thread that calls a method to update config files and so on). ...
0
votes
2answers
68 views
Run Function base of Time on Background
I do have one function to update my UI:
At the moment i call this function more than 8 times in my Action function that will update my UI
public void CheckStatus()
{
...
0
votes
1answer
243 views
How to print message on JSP page after a certain time
I have a complex Requirement.Let me put it very simple.
There is a JSP page, which has a button NEXT.If the user clicks next within 5 minutes then he is taken to the NEXT page, but suppose user does ...
1
vote
1answer
468 views
JQuery Clock / Timer since the page was loaded (even if user changes time on his computer)
I've modified the code from SO, provided by SLaks so make it work even if the user changes the time on his computer.
The time for <div id="timer"></div> still showing the real time since ...
0
votes
1answer
120 views
System.Threading.Timer time issue
I have an issue with Threading.Timer in my .NET application.
To make it easier to understand I made a sample.
using System;
using System.Diagnostics;
using System.Threading;
namespace TimerTestApp
{
...
0
votes
1answer
74 views
Android: Counting time in my main loop
I'd like to a counter to run in the background while my game is being played so that when the player survives for say 1 minute, something happens.
Currently, I'm thinking of doing this by getting the ...
1
vote
1answer
103 views
view picture timer actionscript3,0(FLASH BUILDER)
I want to view each picture after a few seconds.
function display is rolling in program.
please add necessary code.
I could not understand timer function of actionscript.
function ...
0
votes
2answers
2k views
Java display current time
I have a code which shows me the current date and time when I run my application
DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
Calendar cal = Calendar.getInstance();
...
0
votes
0answers
57 views
Timepicker 1 m to 1000 m?
I have a timepicker that shows only the minutes, to select a number to stop the form when the timer reaches that number.
For example if I pick number "6" in my timepicker then the form closes in "6" ...
0
votes
1answer
62 views
Timespan go wrong
I want to add a label that prints the elapsed time like a normal clock (when seconds reachs "59" then add "1" min to the counter) but my time span add minutes when the seconds reaches the number ...
0
votes
5answers
447 views
Time elapse computation in miliseconds C#
I need to time the execution of a code sequence written in C#. Using DateTime.Now I get incorrect values for the millisecond field.
For example:
int start_time, elapsed_time;
start_time = ...
4
votes
3answers
149 views
Execute a task every year in a Java web application
How to execute a task every year in a web application automatically? Is the Timer class helpful for this? I also heard about Quartz? I registered in their page but it seems not to be free. Thank you ...
1
vote
2answers
225 views
C# Creating a Timer that at a specific values changes a label
I am new to C#, and I have searched I but didn't find a simple solution to my problem.
I am creating a Windows form application.
After the start button is clicked, it counts every millisecond and when ...
0
votes
0answers
44 views
Time event generator in android
I looking for a similar class to CountDownTimer, but I want to start and stop the counter and I don't want to have a limit like in CountDownTimer. Is there any class which can do that? Besides looping ...
1
vote
3answers
879 views
Android - calculations with time elapsed in the Chronometer
In Chronometer, how can we extract the time elapsed and store it separately in variables.
For example, store the number of hours, minutes, seconds elapsed in separate int variables?
Is it possible? ...
0
votes
2answers
42 views
How can I check request day with php?
For example: x user booking ticket on monday and ticket status changing as book. After three days, ticket status will change as free(empty) automatically. How can I do this?
0
votes
1answer
71 views
How to convert 60-ticks-per-seconds to floating-point seconds?
I know there is a number of similar questions on Stackoverflow, but this one has a few unique requirements.
I have a ticking mechanism which generates 60 ticks per 1 second(so, 120 ticks would be 2 ...
0
votes
2answers
421 views
How to return value with ScheduledExecutorService?
I use ScheduledExecutorService and I want it to do some calculation every 10 seconds for a minute and after that minute to return me the new value.How do I do that?
Example:
So it receives 5 it adds ...
0
votes
0answers
107 views
Using callbacks instead of loops?
A wise man once told me: "Dude, stop thinking loops, and start doing callbacks." - I've been stuck now for three days with this problem.
I tried to convert the loop using a callback, but it isn't ...
0
votes
1answer
56 views
Javascript timed security to protect spams
I want to detect if spam attacks my contact form. The idea is that I want to test if the user clicks on the submit button after the page loads at least 10 seconds then the form is not sent to the ...
0
votes
5answers
341 views
Can i retrieve microseconds or very accurate milliseconds on c++ on windows?
So I made a game loop that uses SDL_Delay function to cap the frames per second, it look like this:
//While the user hasn't qui
while( stateID != STATE_EXIT )
{
//Start the frame timer
...
-5
votes
1answer
239 views
how to compare the user input time with present time in android? [closed]
How to compare the present time and the user input time and to call the another class through intent??
I m making a alarm kind of application and i used a timepicker to get the userinput time the code ...
1
vote
1answer
97 views
CountDownTimer Format Milliseconds
K So i am making a timer with CountDownTimer. it is my first app i am doing and i am already running into a problem. First my timer is skipping the number 14? no clue why. and second, I dont know how ...
0
votes
3answers
476 views
Stop Repeating Set Timer Function jQuery
i'm not pro with jquery, but i just made a simple code to show a div, after click another div with 10 sec timer.
This is my code:
$(document).ready(function() {
$('.link').click(function() {
...
0
votes
1answer
116 views
How to execute a code for a given time period
I want to know if there is a way in python 2.7 to run code for just for a given time, like 3600 seconds. The time can variate from one execution to an other.
Any ideas are welcome since I am stuck ...
0
votes
6answers
403 views
JavaScript: How to do something every full hour?
I want to execute some JS code every hour. But I can't use
setInterval("javascript function",60*60*1000);
because I want to do it every full hour, I mean in 1:00, in 2:00, in 3:00 and so on. I am ...
0
votes
0answers
51 views
Synchronising Events In Broswers On Different Computers
I have been playing about with Javascript Drum Machines and Sequencers and thought it would be cool to build an HTML5 orchestra for children.
The idea is to make it as easy for 2,3,4 or 5 kids to ...
0
votes
0answers
101 views
Calculating timer delay imposed by activate/deactivate
Hi I have the following struct
typedef struct _myTmr{
int tmrNum;
int expirationCount;
int expirationArray[SIZE];
int activeCount;
int activeArray[SIZE];
int inactiveCount;
...
0
votes
2answers
260 views
Terminate infinite loop after 20 seconds in android
I have one infinite for loop and i want to run this for loop for 20 seconds after that i want to terminate the loop so what can i do for this?
Here is my code in android:
do {
rl += ...
0
votes
0answers
80 views
catch time when the user submit data when using blink c#
that is my interface which contain listbox of date, time and name. this interface shows that the time always changed but the other data remain the same.
data for the name is receive by user using ...
2
votes
1answer
5k views
Display current time in ASP.net and have it ticking
I have a requirement in my application to show date and time.
I am using Ajax in my .net application to do this.
Currently I have this code
<asp:ScriptManager ...
3
votes
3answers
329 views
How Do I Create A Countdown Time That Resets At A Specific Time
Let me first say I do not have a deep understanding of javascript but I know how to work my way around enough to write small scripts for pages. A client of mine needs me to do the following for a ...





