1
vote
2answers
11 views
Delay start of jQuery rotators, one second apart from each other
I have three rotators on the front page and I'd like them to start 1 second after each other.
$(document).ready(function(){
$('#rot_top').cycle({
speed: 500,
timeout: 2000
});
…
0
votes
1answer
11 views
How is the thread-pool handled when using System.Timer objects in multiple threads?
Ok, I know an object of System.Timer executed in the thread-pool, rather than in the UI thread. I also know that the System.Timer is thread-safe.
Say I have a collection of System.Timer objects. I …
0
votes
1answer
33 views
Better boost asio deadline_timer example
I'm after a better example of the boost::asio::deadline_timer
The examples given will always time out and call the close method. I tried calling cancel() on a timer but that causes the function …
1
vote
2answers
45 views
SQL repeat events by timer
I want that a column of my database, composed by float random numbers, change every x seconds determined by a timer.
I read about Schedule Tasks Events but i can't work it.
Please help
0
votes
2answers
16 views
Timer access Class Field
Hi all
Is there any possible way to access the field - str in the Class Program and the variable num - in the main function?
class Program
{
string str = "This is a string";
static void …
0
votes
2answers
58 views
How to send a push Notification every x minutes?
Hey,
how is it possible to push a notification to a device, every x minutes?
Thanks in advance
1
vote
2answers
45 views
jQuery ajax and running timers
Im building an automatic refreshing comment section for my website using jQuery .load. So I am using a javascript 'setTimeout' timer to check for new comments.
But after doing some stuff like …
0
votes
5answers
58 views
Calling a public method on windows service
I have a timer in a windows service (.NET C#). I need to be able to change the elapsed value from an external program. If the timer is currently running, I need to be able to shorten the time …
0
votes
4answers
84 views
Is there a better way to block a C# timer when interacting with the user?
I am using a System.Windows.Forms.Timer component on an application's main form which checks every minute for updates on a database. However, there are a number of possible interactions with the user, …
0
votes
2answers
29 views
How to avoid use of timer when using TThread to communicate with UI thread
I have a TThread which receives and sends to a device on a COM port. After I read the data, I want to activate the GUI (not in the same thread) using Synchronize(function name). However, when I call …
1
vote
1answer
34 views
BlackBerry - Does TimerTask run in the background?
Hello,
Does TimerTask work even if my exit my application and come to home screen or explore other apps?
I have read the forum and find out the thread kind of easy mechanism is to use TimerTask in …
0
votes
4answers
68 views
Adding A Visual Timer To A View, iPhone
Hello all,
I have a view (splash screen) which displays for two minutes:
- (void)applicationDidFinishLaunching:(UIApplication *)application
{
[viewController showSplash];
}
- (void)showSplash // …
0
votes
1answer
49 views
How do I pause my app until a crash report has been submitted?
Background
I'm using UKCrashReporter in my app.
I've installed my own Uncaught
Exception Handler.
I'm setting up the
managedObjectContext of the object
activeItemController in
…
0
votes
3answers
58 views
How to handle mass database manipulation every second - threading?
Hi guys,
I have a very hard problem:
I have round about 20-50 objects, which I MUST (that is given for the problem, please don't spend time in thinking around it) put througt a logic EVERY SECOND.
…
0
votes
4answers
77 views
Cancelling a Timer
I have implemented a token system which assigns a fixed number of tokens. Each token on assignment starts up a Timer which expires after a few number of minutes and clears that token slot for reuse. …
