If I need a function to be carried out at certain real time intervals, is there any way to do this in VC++
Printable View
If I need a function to be carried out at certain real time intervals, is there any way to do this in VC++
You can use the SetTimer API call provided by Windows. When you call SetTimer, the system will send you WM_TIMER messages at the interval that you specify.
You can use the SetTimer API call provided by Windows. When you call SetTimer, the system will send you WM_TIMER messages at the interval that you specify.