@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: The KillTimer API !!!!C# Signature: [DllImport("user32.dll", ExactSpelling=true)] [return: MarshalAs(UnmanagedType.Bool)] static extern bool KillTimer(IntPtr hWnd, IntPtr uIDEvent); !!!!VB Signature: <DllImport("user32.dll", SetLastError:=True)> _ Public Shared Function KillTimer(ByVal hWnd As IntPtr, ByVal nIDEvent As IntPtr) As Boolean End Function !!!!User-Defined Types: None. !!!!Notes: The native method is actually prototyped to take an unsigned event ID, but because unsigned types are not CLS compliant, declaring it as signed makes it somewhat easier to work with. !!!!Tips & Tricks: Please add some! !!!!Sample Code: Please add some! !!!!Alternative Managed API: System.Windows.Forms.Timer Documentation: KillTimer@msdn on MSDN
Edit user32.KillTimer
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.