hello,
google, daniweb, and microsoft searches didn't help me with this so i hope that someone here will know.
i'm trying to have a method called at a fixed interval of time from the time an application starts until it ends ( RedrawWindow() ). i know how to do it in Java (with ScheduledThreadPoolExecutor), but i can only find how to do single execution of a method of a thread in MFC C++ (afxBeginThread).
i thought about just making a new thread to call RedrawWindow() from inside RedrawWindow() but i thought(/think) that that would be a very unsafe operation, and would be quite hard to stop.