CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jun 1999
    Posts
    14

    Timer Function or something similar in VC++????

    If I need a function to be carried out at certain real time intervals, is there any way to do this in VC++


  2. #2
    Join Date
    Apr 1999
    Posts
    19

    Re: Timer Function or something similar 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.


  3. #3
    Join Date
    Apr 1999
    Posts
    19

    Re: Timer Function or something similar 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.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured