Introduction
This article describes how to put a progress bar control into the taskbar.
How Does It Work?
First, we need to create an instance of the progress control. The progress bar control will be automatically attached to the taskbar. At startup, the program searches for three specific HWnd
s. These are Shell_TrayWnd
, ReBarWindow32
and TrayNotifyWnd
. The program tasks, shortcut bar, etc. are all included into this window using the ReBarWindow32
class. ReBarWindow32
is directly placed beside the TrayNotifyWnd
window. All we need to do now is to create the progress bar using the method Create
but we don't add it to our main window, we add it to the taskbar. An important fact is that the control needs its own message map, else you will get a 100% CPU usage due to the message handling when we click on the control in the taskbar.
Facts
- The progress control is directly attached into the taskbar. When you have enabled the Auto Hide option of the Windows Taskbar, the control moves with it.
- We need to renew the control when we:
- Add an icon into the tray notify bar.
- Change/move the taskbar from horizontal to vertical and vice versa.
- * etc..
- To renew the control, we need a timer at this time (I haven't found a kind of broadcast message yet).
- Parent window of the control is the
Shell_TrayWnd
of the Taskbar.
Other Classes Used
CTextProgressCtrl
by Chris Maunder
Where Does It Work?
It's tested on:
- WinXP
- Win2000 Prof
- Win2003 Server
Use this program / source code at your own risk. The author of this program is not responsible for any damage on your or another computer caused by this program.
License
This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.
A list of licenses authors might use can be found here.