G gabriel Feb 4, 2004 #2 Change computer language. If your app depends so much on highly-accurate timing, then the garbage collector alone (and the fact that you have little control over it) will mess up your timings.
Change computer language. If your app depends so much on highly-accurate timing, then the garbage collector alone (and the fact that you have little control over it) will mess up your timings.
W William Stacey Feb 4, 2004 #3 I think Win32s' QueryPerformanceCounter is the only thing that can do better then milliseconds.
N Nicolas di Tada Feb 4, 2004 #4 You can use c++.net with some unmanaged sections when needed. Thanks, Andy Click to expand... Nicolas di Tada Manas - Technology Solutions http://www.manas.com.ar
You can use c++.net with some unmanaged sections when needed. Thanks, Andy Click to expand... Nicolas di Tada Manas - Technology Solutions http://www.manas.com.ar
C Cezary Nolewajka Feb 4, 2004 #5 Ticks is a good time measure. There are 10 000 ticks per millisecond. See TimeSpan.TicksPerMillisecond constant.
Ticks is a good time measure. There are 10 000 ticks per millisecond. See TimeSpan.TicksPerMillisecond constant.
H HKM Feb 4, 2004 #6 http://support.microsoft.com/default.aspx?scid=KB;en- us;Q172338 According to this page, It explains the maximum possible timer resolution for ur machine. Regards, -HKM
http://support.microsoft.com/default.aspx?scid=KB;en- us;Q172338 According to this page, It explains the maximum possible timer resolution for ur machine. Regards, -HKM
J Jay B. Harlow [MVP - Outlook] Feb 5, 2004 #7 Andy, In addition to HKM's suggestion: Here are C# & VB.NET versions of HKM's post: http://support.microsoft.com/default.aspx?scid=kb;en-us;306979 http://support.microsoft.com/default.aspx?scid=kb;en-us;306978 The February 2004 issue of MSDN Magazine had a good article on Timers in ..NET: http://msdn.microsoft.com/msdnmag/issues/04/02/TimersinNET/default.aspx The March 2004 issue of MSDN Magazine has a second good article on Timers in ..NET: http://msdn.microsoft.com/msdnmag/issues/04/03/default.aspx Hope this helps Jay
Andy, In addition to HKM's suggestion: Here are C# & VB.NET versions of HKM's post: http://support.microsoft.com/default.aspx?scid=kb;en-us;306979 http://support.microsoft.com/default.aspx?scid=kb;en-us;306978 The February 2004 issue of MSDN Magazine had a good article on Timers in ..NET: http://msdn.microsoft.com/msdnmag/issues/04/02/TimersinNET/default.aspx The March 2004 issue of MSDN Magazine has a second good article on Timers in ..NET: http://msdn.microsoft.com/msdnmag/issues/04/03/default.aspx Hope this helps Jay