VC++: How to change the color of a progress bar in a progress bar control?
How to change the color of a progress bar in a progress bar control?
Call SendMessage( ) function as follows:
m_progress.SendMessage ( PBM_SETBARCOLOR, 0, RGB ( 255, 0, 0 ) ) ;
Where m_progress is an object of CProgressCtrl class.




Comments
Log in or create a user account to comment.