Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. How to simulate DoEvents() in Visual C++?

How to simulate DoEvents() in Visual C++?

Scheduled Pinned Locked Moved C / C++ / MFC
c++helptutorialquestion
4 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • W Offline
    W Offline
    WithPointer
    wrote on last edited by
    #1

    Hi, How to simulate DoEvents() function of Visual Basic in Visual C++? Please help if you know.

    N B 2 Replies Last reply
    0
    • W WithPointer

      Hi, How to simulate DoEvents() function of Visual Basic in Visual C++? Please help if you know.

      N Offline
      N Offline
      nguyenvhn
      wrote on last edited by
      #2

      Something might work void DoEvents() { MSG dispatch; while (::PeekMessage( &dispatch, NULL, 0, 0, PM_NOREMOVE)) { if (!AfxGetThread()->PumpMessage()); } }

      W 1 Reply Last reply
      0
      • N nguyenvhn

        Something might work void DoEvents() { MSG dispatch; while (::PeekMessage( &dispatch, NULL, 0, 0, PM_NOREMOVE)) { if (!AfxGetThread()->PumpMessage()); } }

        W Offline
        W Offline
        WithPointer
        wrote on last edited by
        #3

        I got it, thanks a lot!

        1 Reply Last reply
        0
        • W WithPointer

          Hi, How to simulate DoEvents() function of Visual Basic in Visual C++? Please help if you know.

          B Offline
          B Offline
          Branislav
          wrote on last edited by
          #4

          http://blogs.msdn.com/oldnewthing/archive/2005/02/22/378018.aspx[^]

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups