vote up 2 vote down star

How can I create a Sidebar form in delphi.

I try the ScreenSnap and Align properties but I need that the form stay visible even if the user maximize other forms, without been on top. Just like the windows sidebar do.

update from the comments: if a window is maximized it maximizes next too the window, not in front of or behind.

Thanks

flag

60% accept rate
It sounds like what you want is your form to dock on the side of the screen and effectively reduce the desktop size in the same way that the task bar and other sidebars do. So if a window is maximized it maximizes next too your window, not in front of or behind. – Jim McKeeth Nov 13 '08 at 23:18
yes, that's what I need – Marioh Nov 13 '08 at 23:22

2 Answers

vote up 6 vote down check

What you're looking for is called an AppBar. Begin your research with the ShAppBarMessage API function.

link|flag
vote up 0 vote down

You can call a Windows API function to force your application to stay on top:

SetWindowPos(Handle, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
link|flag
Thanks for the feedback. I Already try setting the FormStyle property to fsStayOnTop (I think that make the same as the code you posted). But i need that the form stay visible without been on top of others like the taskbar on windows or the sidebar in vista. – Marioh Nov 13 '08 at 22:54
@Marioh: No, the API function I mentioned is NOT the same as setting the FormStyle to fsStayOnTop. As you have discovered, setting the FormStyle doesn't work. Calling the API function DOES work. – Kluge Nov 13 '08 at 23:02
@Kluge: He is looking for docking, not stay on top. His question was unclear. – Jim McKeeth Nov 13 '08 at 23:41
Thanks for the clarification @Jim. I thought this question sounded too easy. – Kluge Nov 14 '08 at 0:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.