0
votes
1answer
20 views
Timer Queues, immediately terminate a timer?
I'm trying to achieve high frame-per-second on Windows GDI by using Windows Timer Queues. The relevant APIs are CreateTimerQueue, DeleteTimerQueueEx, CreateTimerQueueTimer, and Del …
0
votes
1answer
42 views
PHP Timer Based on Typing
Hello everyone,
I'm trying to figure out the best way to create a timer that is associated with typing within a specified form field.
Whenever someone starts typing the timer sta …
4
votes
3answers
85 views
Calculating number of seconds between two points in time, in Cocoa, even when system clock has changed mid-way.
I'm writing a Cocoa OS X (Leopard 10.5+) end-user program that's using timestamps to calculate statistics for how long something is being displayed on the screen. Time is calculat …
0
votes
4answers
62 views
Stack.Overflow error - WinForms App Vs. WinService
I have a small code sample:
private void MonitorItems()
{
if (someCondition)
{
dateSelected = DateTime.Now;
GetAllI …
1
vote
5answers
92 views
Substitute the timer.
I want to call asynchronous methods, but I don't want use a timer. How can I substitute the timer? I need the invoker that substitute the timer.
0
votes
4answers
41 views
Timers / Tap and Hold gesture problem in .NET CF
Hey,
Ive encountered some strange behaviour in my .NET CF 2.0 application running on Windows CE 5.0.
I have a timer updating a control periodically, that control can also receive …
3
votes
4answers
66 views
How to avoid leaking handles when invoking in UI from System.Threading.Timer?
It seems like calling Invoke on a winforms control in a callback from a System.Threading.Timer leaks handles until the timer is disposed. Does anyone have an idea of how to work a …
1
vote
5answers
211 views
How do I count how many milliseconds it takes my program to run?
This will show how many seconds:
#include <iostream>
#include <time.h>
using namespace std;
int main(void)
{
int times,timed;
times=time(NULL);
//CODE HER …
0
votes
1answer
16 views
Visual Basic 2008 Opacity Failure
Hey guys,
I have a 2 files here. One is my main form, and the other is a dialog I made. Now I'm trying to get enter code here the dialog to gradually obtain its transparency from …
78
votes
13answers
4k views
Is DateTime.Now the best way to measure a function’s performance?
I need to find a bottleneck and need to accurately as possible measure time.
Is the following Code Snippet the best way to measure the performance?
DateTime startTime = DateTime. …
0
votes
2answers
60 views
Call MVC action asynchronously using jquery timer plugin
I am using jquery timer plugin to show the alerts to the user in my asp.net mvc (C#) application.
The code in my master page looks like:
$(document).everyTime(60000, function(i) …
0
votes
1answer
37 views
Timer interrupt problem in vb.net
I have 2 timers in MVB 2008 Express, one to control the fading in of a window and another to call a beep function every few seconds or so. The problem is that while the window is f …
1
vote
4answers
69 views
StopWatch (System.Diagnostics) and System.Timers
I am new to handling threads.
What is the role of System.Diagnostics and System.Timers in the context of Threading ?
Both are alternative to each other or they implemented for do …
0
votes
8answers
85 views
[C#] A problem with MyThread and the Timer Control
Hi, I have e.g that method, which is being invoked in the second Thread:
public byte[] ReadAllBytesFromStream(Stream input)
{
clock.Start();
using (...)
…
2
votes
4answers
83 views
Will a large number of timers affect timer firing?
If i have a large number of timers (10 to possibly a couple hundred) all with < 100 ms interval, will that affect the firing of any one of them?
