Tagged Questions
5
votes
4answers
1k views
How to make a countdown timer in asp.net web application(C#)?
I am Creating Timed online test in C# asp.net.I have created it using the local machine time. But in the case of Database disconnection or system hang, The countdown timer must start from the time at ...
3
votes
5answers
147 views
How can i run php script with timer?
I have foreach functions that print students names
$names = array("Alex","Brad","Tom");
foreach($names as $name) {
echo "$name <br />";
sleep(3);
}
How can i print each name, each 3 ...
3
votes
1answer
338 views
Javascript Countdown Timer
I need a count down timer that can display second:miliseconds format, I found one that I figured I could modify it to show this like 4:92 but it doesn't want to work for me for some reason. It works ...
3
votes
1answer
562 views
Android: Auto Refresh Google Maps
I want to ask about how to auto refresh the Google Maps?
So i have an activity with radio button inside that user can choose about the interval of the auto refresh. Then I create a class with a map ...
3
votes
1answer
4k views
Countdown timer iphone sdk?
I have a countdown timer in my game and I'm trying to figure out how to make it so that it shows two decimal places and records with 2 decimal places in my table. Right now it counts down as a ...
2
votes
1answer
102 views
How to display clock count down whole the application on Blackberry?
I make and display an clock count down with this code
LabelField time;
long mille=0;
Timer timer=null;TimerTask task=null;
public Timerscreen() {
...
2
votes
4answers
122 views
Timer in Java - few problems with mins/hours decrement
I am developing a Java countdown timer. I am totally new to Java though have done some C++ before so it's not all totally new. I am having problems with this - can anyone easily see what I have done ...
2
votes
3answers
382 views
javascript: simple countdown timer problem
Hello, I have some problems with this code.
var second = 0;
// Set the end time of the campaign on, Year, Month, Day, Hour, Minute only.
countdown('clock', 2011, 8, 31, 23, 59, second);
...
2
votes
2answers
151 views
python add time to a countdown already running
I want to have an app where if I click a button I add X amount of time to my running countdown timer.
I'm guessing I have to use threads for this but am not sure how to implement it..
Here is the ...
2
votes
2answers
367 views
Various ways to handle timing in Android
I have a need for a very simplistic way to keep track of time. Basically I simply need to start a timer when a method is called, and a set amount of time after that (45-90 seconds) call another ...
2
votes
2answers
479 views
Counting down the days - iPhone Count Down Timer
I’m trying to make a counter which shows the number of days until we leave on a trip to Europe. It’s only about 70 days (as of today) so I don’t believe that I should have to worry about ...
2
votes
2answers
662 views
Algorithm for count-down timer that can add on time
I'm making a general timer that has functionality to count up from 0 or count down from a certain number. I also want it to allow the user to add and subtract time. Everything is simple to implement ...
2
votes
3answers
138 views
Strange problem with JavaScript code
Hi Masters Of Web Development,
first I want to say that I did not believe in my eyes - I've got a piece of javascript that works just fine in IE7, and don't in Firefox!!! :)))) That was little joke. ...
1
vote
2answers
45 views
How to use a sleep/wait function to display a countdown
I want my program to start off using a countdown timer that will be displayed to the user. The only way I can think to do that is to label.setText() and Thread.sleep(). I've tried for about 20min ...
1
vote
1answer
150 views
Countdown timer which has increment/decrement option that can be set by user
I’m new to Java language but worked with C language previously. I tried many ways to solve the following problem but couldn’t so I need help.
I’m trying to do the following:
•Set 5 minute timer ...
1
vote
4answers
196 views
Recurring Countdown Timer in Java
I'm trying to implement a countdown timer into a pre-existing public class and I have a few questions.
An overview: I want to have a timer within a program that counts down from 60 (seconds) once the ...
1
vote
1answer
173 views
Countdown timer problem android
I have created an android quiz application where i have a feature Exam . In Exam i have used a timer. Timer is working fine. The following code segment i use ...
public class MyCount extends ...
1
vote
1answer
304 views
PHP countdown timer problem using javascript
I'm using php 5.3.6 and mysql 5.1.54 with apache webserver windows edition on my local pc.
And my web host have php 4.0.2 and mysql 4.1.2 with apache webserver linux edition.
I'm using a script and ...
1
vote
4answers
181 views
Struggling with a NullPointerException
Total newbie programmer here trying to make his first Android app. A simple countdown timer and a few other things and it was all working, but in order to try and fix an issue with the countdown ...
1
vote
3answers
965 views
How can I make a 10 second countdown timer before a download button link appears?
On a download page, I would like to have it so that when the page loads, a 10 second timer automatically starts. On the page, I would like some text to say something like "You can begin your download ...
1
vote
1answer
197 views
Countdown timer increase on interaction?
I have a form that I want to close after 5 seconds if no mouse interaction is done but if any mouse interaction is done I want it to close countdown + 5 seconds and each interaction would increase it ...
1
vote
1answer
299 views
iPhone - Five independent but simultaneous Countdown timers
Any tips on making five independent but simultaneous Countdown timers from 2 minutes down to 0, and then restarts at 2 min. And, whenever a user hits a reset button for each timer, that timer would ...
1
vote
1answer
971 views
Show Redirecting In.. CountDown Timer PHP
I have this code so far that redirects the user after 5 seconds to the correct URL:
<?php
$url = $_GET['url'];
header("refresh:5;url=$url");
include('ads.php');
?>
Please could you tell me ...
1
vote
1answer
548 views
JavaScript Countdown Timer Using Server Time
I'm trying to create a countdown timer that's based on a time on the server.
I originally had the server set the time left, and just did a setTimeout for 1 second that would decrement the time.
I ...
1
vote
5answers
2k views
Python timer countdown
I want to know about timer in Python.
Suppose i have a code snippet something like:
def abc()
print 'Hi'
print 'Hello'
print 'Hai'
And i want to print it every 1 second. Max three ...
1
vote
2answers
1k views
asp.net/jquery - Countdown timer not working
Here is the full code:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
1
vote
1answer
473 views
Start a Countdown timer in a Telerik RadGridView upon Button Click
I have a Start Button as one of the RadGridView columns. Upon clicking it, I need to update another a Status Column value in that particular row with a value as started and another column as Time ...
0
votes
2answers
48 views
Android: CountDownTimer skips last onTick()!
Code:
public class SMH extends Activity {
public void onCreate(Bundle b) {
super.onCreate(b);
setContentView(R.layout.main);
TextView tv = (TextView) ...
0
votes
2answers
40 views
Having a countdown timer on a Canvas using Surfaceview class in Android
My problem is that , i am making one game and i am using Surfaceview class and drawing bitmap images on a canvas.
I want the game to have a maximum time limit of 1 minute ie 60,000 millisec.
I want ...
0
votes
2answers
149 views
A CSS-styleable countdown timer?
I imagined this would be super-simple, but it is eluding me so far. I would like to know how I can implement a timer that counts down to a specific date and can be styled with CSS.
Specifically, I ...
0
votes
0answers
41 views
Countdown not working on service
Ok my timer doesn't really work.I mean if I put some code onTick() it executes the code! But f I put some code onFinish() it never executes!
What is wrong? No error appears,I mean is weird!
Here is ...
0
votes
1answer
70 views
How do I reset a countdown timer when it reaches 0? (Xcode 4)
first question and I have researched the heck out of this and can't seem to find any answers.
I would like to implement a countdown timer in my app that starts at 30 seconds and resets when it hits ...
0
votes
0answers
81 views
Detect countdown, laptime and alarm events on Android device
I am working on some application that fires off an action when the countdown, laptime and alarm events on the android device are triggered.
The basic logic is that once say a countdown is implemented ...
0
votes
0answers
33 views
How can I create a countdown ticker with a long track, a scale and a moving object like in tickerfactory.com [closed]
I want to create a custom countdown ticker (similar to those created by http://tickerfactory.com), which
contains a background image
and optionally a text describing what the ticker shows
a scale ...
0
votes
1answer
128 views
Jquery Countdown timer fails in IE
Im using a jquery countdown timer mixed with php. here is an example of the code.
<?php
$time = new DateTime($buy->{$i}->end_date);
$deal_time = ...
0
votes
2answers
77 views
Php Counting seconds to the nearest quarter-hour
I've got an application that requires the time until an event (in seconds) to display a countdown timer. The countdown timer should be counting down 20 minutes at a time. However, I need to use php to ...
0
votes
0answers
16 views
Creating unwanted timers
Ok I'm coding since 7 hours ago,so I may say dumb things,but this is the last thing I'm doing today.
I tried with functions,classes but maybe my creativity it's not at it's full power right now...
I ...
0
votes
2answers
98 views
simple php javascript countdown to DATETIME
I have a DATETIME date in a mysql field, and i'd like the simplest timer displayed on my PHP page counting down to that. The timer will never be over a few minutes.
I'm guessing some kind of ...
0
votes
1answer
132 views
jQuery Countdown - reset timer
I'm using the jQuery Countdown plugin and have a quick query.
My code currently looks like this:
function doCountdown(){
var nextNoon = new Date();
if (nextNoon.getHours()>=12){ ...
0
votes
1answer
32 views
Know Active Timer
In Android, after starting any timer using TIMER or CountDownTimer, is there any way to track them?
For example, if we start 5 timer and we want to stop the second one(or update it), how to do that ...
0
votes
2answers
293 views
Countdown timer with pause/reset
I'm looking for an open source JavaScript timer that will countdown from 60 seconds. I would prefer if people could increase the timing on the timer, but that's not necessary. It is necessary for ...
0
votes
5answers
215 views
How to create a countdown timer with jQuery?
I'll have more than one of these small boxes on my site, and each will start counting down at different times.
How can I decrease the numerical value of the timer per second, giving the simulation of ...
0
votes
1answer
163 views
Countdown timer in rails
In my application, I have a deadline in this format : 2011-08-26 16:45:00 UTC.
In my controller, I am calculating the difference between this date and the current one. The result looks like this : ...
0
votes
0answers
31 views
Android timer controlled by an array
Mega noobie first,so wouldn´t like to bother the champs and thank for all the code and help I´ve seen on this forum!!!
Basically what I´m trying to do is in a a simple countdowntimer where the times ...
0
votes
1answer
153 views
How To reset Tick time in Countdowntimer On user Click
I want to reset Tick time in countdown timer on user click and user click is done in onTick()
event
please Help soon...
0
votes
1answer
162 views
Countdown Timers that Persist Despite AJAX Reload
Currently I'm using someone else's JS-based countdown timer. When I fetch the timers I simply append a value to the class of the countdown timer like so:
In PHP:
$rows = mysql_num_rows($result);
...
0
votes
0answers
316 views
CountDownTimer.cancel() - How exactly is it working?
I have a countdown timer in my service, even when I call the cancel() method, after the set time of the countDownTimer, the finish() of countdowntimer is called.
Either my code is wrong
I am not ...
0
votes
2answers
130 views
Countdown timer showing problem android
I an new in android development.I have create an android application where i need to use a timer.
I have took a text view and a button . When my application is run the text view is set set 00:05:00 ...
0
votes
1answer
122 views
How do I set a completion activity for a CountDown timer in Android?
I am trying to create a countdown timer that counts down for 60 seconds (optionally skippable by the user). That part of the code works. How do I make it so an action is taken upon the completion of ...
0
votes
0answers
166 views
Cancel CountDownTimer not working
I've tried a few different ways to cancel a CountDownTimer but I've not had any luck, I've tried creating a public class and using a button to call cancel(), I've set the button to set a boolean with ...