[release]show/hide Taskbar Docklet

As requested by DTOXX and others:

Show/Hide taskbar docklet

Click it to toggle the visibility of the taskbar.

Download at Dock.....Ex

For those that are interested, here is the code that does it all:

	HWND taskbarWindow = FindWindow("Shell_TrayWnd",0);
if(taskbarWindow)
{
 ShowWindow(taskbarWindow, IsWindowVisible(taskbarWindow) ? SW_HIDE : SW_SHOWNORMAL);
}

Enjoy,

Andreas

#125023

Andreas - when I try to get the file it tries to download something named: __dkpackage - is that correct?

#125163

Yep, after that you will get another file that is a ZIP-file, at least that is how dockex works using Internet Explorer here :)

#125164

It doesn't point to another package for me...here's what I get in my "file save" window in IE6

filedownload.jpg

#125458

When you get the dialogue that says "download __dkpackage" just click on Open, after that you will get the ZIP file.

#125462

Still not right...I can download every other docklet on that site but this one...something is wrong with that file. Here's what I see if I hit "open" instead of "save"

openerror.jpg

#125552

are u using IE (looks likeit ) or what browser to download the file? and what version?

#125555

Originally posted by hallf@Mar 7 2004, 05:25 PM

Still not right...I can download every other docklet on that site but this one...something is wrong with that file.  Here's what I see if I hit "open" instead of "save"

openerror.jpg

just rename it's extention to .zip

#125558

Using IE 6 with all the latest updates. Like I said, I can download every other docklet on the site - this is the only one giving this strange result.

EDIT - thy - your suggestion worked (adding the .ZIP extension)...thanks

#125609