Desktop Functions: Smart Device Functions:
|
Search Results for "SetTimer" in [All]ntdll
static extern int NtSetTimerResolution(int DesiredResolution, bool SetResolution, out int CurrentResolution );
Declare Function NtSetTimerResolution Lib "ntdll.dll" (ByVal DesiredResolution as UInteger, ByVal SetResolution as Boolean, ByRef CurrentResolution as UInteger) NtSetTimerResolution(0.5, True, 0) user322: SetTimer
static extern IntPtr SetTimer(IntPtr hWnd, IntPtr nIDEvent, uint uElapse, TimerProc lpTimerFunc);
static extern IntPtr SetTimer(IntPtr hWnd, IntPtr nIDEvent, uint uElapse, IntPtr lpTimerFunc);
Public Shared Function SetTimer _
Public Shared Function SetTimer _ When using the version that takes a delegate make sure that the delegate is kept alive, i.e. there must be a managed reference to the delegate. Typically this means that after creating the delegate and before passing it to the SetTimer method you should asign it to some private field. kernel323: set
public void SetTimer(long Interval)
public void SetTimer(long Interval) |