-
heeelp please
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
-
Re: heeelp please
Welcome to VBForums.com :wave:
You are working on VB.Net, not VB6.... :)
-
Re: heeelp please
Thread moved from 'VB6 and Earlier' forum to 'VB.Net' (VB2002 and later) forum
-
Re: heeelp please
thanks for moving my thread, but i don't really know what to do, i hope anyone would help me on this, it's really bugging me not know what to do!!!