Link to home
Start Free TrialLog in
Avatar of bspotswood
bspotswood

asked on

Creating a custom Windows taskbar plugin

I want to create a custom toolbar plugin for the Windows system taskbar. I expect this to run on Windows XP. I'm mostly looking for a place to get started ... so does anyone have any links to some information I can read to get me started?

If you're still not clear on what I'm talking about, I'm talking about the taskbar that has the start button on it. You can have a quicklaunch toolbar with icons in it. I have also seen an internet explorer toolbar in the taskbar, and a microsoft windows media player control in the taskbar. I want to be able to make one of those myself and I don't know where to get started. :p
ASKER CERTIFIED SOLUTION
Avatar of Jaime Olivares
Jaime Olivares
Flag of Peru image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bspotswood
bspotswood

ASKER

Well I was hoping for a way of creating an actualy taskbar toolbar item.

If you right cilck on your taskbar then you will see a menu option "Toolbars". From there you have several options, including one for Windows Media Player and one for Address. The Windows Media Player bar shows up when you have it checked from that menu and then open windows media player and minimize it.

I would like to be able to make my own toolbar which acts similar to these.
Take a look at SystemBarEx:
http://www.desktopian.org/bb/
http://www.desktopian.org/bb/source/Systembar.cpp.html
I guess is something like what you want.
You can also take a look at TrueLaunchBar
it has all the features you wanted.(MediaControl, Weather info, ToDo list, skinnable clocks, various monitoring plugins...), its skinnable and you can develop your own plugins for it.

www.truelaunchbar.com
Well let me spell out why I want to be able to put something in the taskbar...

When I'm at work I cannot sit around and run a chat client on my desktop all day because its either sitting on top of the windows that I need to see, or for fears of a boss seeing it and then they get the impression that all I do is chat, which isn't true. I mostly just want to be able to monitor a room, but not respond. So what I was planning on doing was making a little application which could connect to an IRC chat room and then just scroll messages up in a toolbar on my taskbar. This way its not in the way of anything else and I can monitor the room. I don't care about being able to respond, I just want a toolbar in my taskbar that scrolls up messages from the chat room.

I was mentioning the Windows Media Player and Address toolbars as examples to show that an application can somehow be hosted within the taskbar, as this is what I want to be able to do. I also thought it would be fun to learn how to make a toolbar for the taskbar in general. =)
Well I think I found all the relative links that I am likely going to need:

I found the following info from the MSDN:
Creating Custom Explorer Bars, Tool Bands, and Desk Bands:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/Shell/programmersguide/shell_adv/bands.asp

An okay taskbar toolbar (with code) that I can use as an example:
Dave's Quick Search Taskbar Toolbar Deskbar:
http://www.dqsd.net/

...and also this excellent C# article/example:
Extending Explorer with Band Objects using .NET and Windows Forms:
http://www.thecodeproject.com/csharp/dotnetbandobjects.asp

I will still be willing to award the points to anyone else who can come up with a link to another quality article or example. Thanks! =)
Hmm ... actually, looking back at jaime_olivares' first post, he did have one relative link there. I guess I just skimmed through it too quickly to realize it.

http://www.codeproject.com/atl/rbdeskband.asp

So I'll go ahead and just give ya credit for this. For anyone else seeing this, the 3 links I posted were also very relative to what I wanted.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/Shell/programmersguide/shell_adv/bands.asp
http://www.dqsd.net/
http://www.thecodeproject.com/csharp/dotnetbandobjects.asp

:)