1
vote
3answers
39 views
How can I reveal content and maintain its visibility when mousing to a child element?
I'm asking a question very similar to this oneādare I say identical?
An example is currently in the bottom navigation on this page.
I'm looking to display the name and link of th …
0
votes
1answer
27 views
Database query and countdown with Ajax in ASP.Net ~ Hard Problem
Hi guys,
I asked a several time but must ask again, beacuse I don't know what to do:
On my Page I have an auctioneer system.
Every second I must:
Get Information if any bidder …
1
vote
2answers
63 views
How to use QueryPerformanceCounter?
I recently decided that I needed to change from using milliseconds to microseconds for my Timer class, and after some research I've decided that QueryPerformanceCounter is probably …
0
votes
1answer
11 views
Which Timer object should I use in long running processes in .Net?
Which Timer object should I use in long running processes in .Net?
The timer will be used in a Windows Service, and I wish to find the best fit performance wise.
0
votes
1answer
20 views
How to tell if an ajax timer has gone off at page_load
Hello, I have a web application and I'm attempting to put an ajax timer control in it to give me a post back every 10-20 seconds. (possibly longer depending on performance). I have …
1
vote
3answers
38 views
what is the right way to call the Timer ElapsedEventHandler
i have a timer that calls its even handler method every 30 seconds.
but i want to initialy call this method.
the signature of the event handler method is
void TimerElapsed_Generat …
0
votes
1answer
21 views
What is the clock source for the count returned by QueryPerfomanceCounter
I was under the impression that QueryPerformanceCounter was actually accessing the counter that feeds the HPET (High Performance Event Timer)---the difference of course being that …
4
votes
3answers
137 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 …
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
1answer
29 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
4answers
65 views
Stack.Overflow error - WinForms App Vs. WinService
I have a small code sample:
private void MonitorItems()
{
if (someCondition)
{
dateSelected = DateTime.Now;
GetAllI …
0
votes
1answer
44 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 …
3
votes
4answers
86 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
95 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
56 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 …
