@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: The timeGetTime function retrieves the system time, in milliseconds. The system time is the time elapsed since Windows was started. !!!!C# Signature: [DllImport("winmm.dll", EntryPoint="timeGetTime")] public static extern uint MM_GetTime(); !!!!VB Signature: <DllImport("winmm.dll", EntryPoint := "timeGetTime")> _ Public Shared Function MM_GetTime() As UInteger End Function !!!!User-Defined Types: None. !!!!Notes: Unlike Environment.TickCount, you can directly set the resolution of this timer with the Winmm.TimeBeginPeriod function. See Winmm.TimeBeginPeriod (imported as MM_BeginPeriod) and Winmm.TimeEndPeriod (imported as MM_EndPeriod) !!!!Tips & Tricks: Please add some! !!!!Sample Code: See Winmm.TimeBeginPeriod for a sample !!!!Alternative Managed API: Do you know one? Please contribute it! Documentation: timeGetTime@msdn on MSDN
Edit Winmm.TimeGetTime
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.