Page 1 of 2
Taskbar?

Posted:
Sep 22, 2001 @ 8:29pm
by RICoder
Re: Taskbar?

Posted:
Sep 22, 2001 @ 8:34pm
by Paul
Re: Taskbar?

Posted:
Sep 22, 2001 @ 8:43pm
by RICoder
Re: Taskbar?

Posted:
Sep 22, 2001 @ 8:52pm
by RICoder
Re: Taskbar?

Posted:
Sep 22, 2001 @ 8:58pm
by jongjungbu
Re: Taskbar?

Posted:
Sep 22, 2001 @ 9:01pm
by Luciano U. Werner
Re: Taskbar?

Posted:
Sep 22, 2001 @ 9:21pm
by RICoder
This is good and bad.<br><br>A) Yeah, HOW IS IT NOT THE FARGIN TASK BAR? Thats what I'd call it.<br>B) I need it be go away, but I need to get the Start Menu Message...though I could create my own I suppose...hmmm.<br>C) Luci, if you go you can see what's a cookin'.
Re: Taskbar?

Posted:
Sep 22, 2001 @ 9:31pm
by jongjungbu
Re: Taskbar?

Posted:
Sep 22, 2001 @ 9:32pm
by Luciano U. Werner
Re: Taskbar?

Posted:
Sep 22, 2001 @ 9:32pm
by jongjungbu
Re: Taskbar?

Posted:
Sep 22, 2001 @ 9:35pm
by Dan East
It's called the TaskBar. Its window class is HHTaskBar. You can just send a message to it to get its size.<br><br>Here's how I display the Start Menu. I simply send a message to the TaskBar as if the user clicked at coords 2,2:<br>[fixed]<br>HWND wnd=::FindWindow(_T( "HHTaskBar" ), NULL);<br>if (wnd) <br> SendMessage(wnd, WM_LBUTTONDOWN, 1, MAKELPARAM(2,2));<br>[/fixed]<br>That works for me!<br><br>Dan East
Re: Taskbar?

Posted:
Sep 22, 2001 @ 9:37pm
by jongjungbu
Dan to the rescue!
Re: Taskbar?

Posted:
Sep 22, 2001 @ 9:40pm
by Moose or Chuck
The top one is the Task Bar, the bottom is the Status Bar. And he saw that it was good, so it was.<br>Both are 16 pixels, aren't they?
Re: Taskbar?

Posted:
Sep 23, 2001 @ 2:29pm
by RICoder
Thanks Dan, though I figured it out before I read your post. I just wrote a quick spy app to tell me what they were.<br><br><br>Now, on to bigger and badder things. I have the window, but do I want to subclass it and draw over it or just hide it? Hmmmmm.......
Re: Taskbar?

Posted:
Sep 23, 2001 @ 2:33pm
by Malmer
Aha...you're making your own skinion?
