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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
D

DrewH

@DrewH
About
Posts
2
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Problems with IProgressDialog
    D DrewH

    After searching the internet some more I found the same answer. Following is the code, in case anyone else has this issue. HWND hDlgWnd(NULL); HRESULT hr; IOleWindow *pOleWindow; //Sometimes the progress dialog sticks around after stopping it, //until the mouse pointer is moved over it or some other triggers. //This process finds the hwnd of the progress dialog and hides it //immediately. if (SUCCEEDED(m_pprogressdlg->QueryInterface(IID_IOleWindow, reinterpret_cast (&pOleWindow)))) { hr = pOleWindow->GetWindow(&hDlgWnd); if(FAILED(hr)) { hDlgWnd = NULL; } pOleWindow->Release(); } m_pprogressdlg->StopProgressDialog(); if (hDlgWnd) ::ShowWindow(hDlgWnd, SW_HIDE); m_pprogressdlg.Release();

    C / C++ / MFC question

  • Problems with IProgressDialog
    D DrewH

    Did you ever figure out the solution? I am having the exact same issue.

    C / C++ / MFC question
  • Login

  • Don't have an account? Register

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