There is a win7 application which can show a progress bar on the win7 task bar.
I was wondering how is it implemented. Is there any Win32 API can do this?
There is a win7 application which can show a progress bar on the win7 task bar.
I was wondering how is it implemented. Is there any Win32 API can do this?
You should inhert CProgressCtrl
class and redraw the control.
Handle WM_PAINT
message as painting the control in OnPaint
function.