visual studio 2010 - using CFrameWnd SetProgressBarPosition method of the taskbar feature, with CDialog in MFC -
cframewnd in mfc classes of visual studio 2010 , later comes method called cframwnd::setprogressbarposition(int pos) uses features added windows vista , later os. how use feature of os in mfc dialog application e.g. cdialog class.
ccomptr<itaskbarlist3> ptbl3; ptbl3.createinstance(clsid_taskbarlist); if(ptbl3!=null) { ptbl3->setprogressstate(m_hwnd, tbpf_normal); ptbl3->setprogressvalue(m_hwnd, 100, 50); }
Comments
Post a Comment