hi all this is my first time here, and i'm working with my first project on visual studio 2008, i have a simple question, and i have read too much on the same topic, but i couldn't find the answer.. i want to make a form that stays on top (i already know how to do that one) but at the same time i want it to be like taskbar beside open windows, when i make a form "topmost" all other windows go behind it, i want them to stay beside my form while my form also remains on top... here's part of my form code:
------------------------------------------------------------------

Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
FormBorderStyle = Windows.Forms.FormBorderStyle.None
Me.Width = Screen.PrimaryScreen.Bounds.Width
Dim WorkingArea As Rectangle = Screen.GetWorkingArea(New Point(0, 0))
Me.Location = New Point((WorkingArea.Width - Me.Width), (WorkingArea.Height - Me.Height))
End Sub
------------------------------------------------------------------
Please if anybody knows anything about this let me know, thank you