|
-
Nov 28th, 2009, 06:47 PM
#1
Thread Starter
New Member
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
-
Nov 28th, 2009, 08:58 PM
#2
Re: heeelp please
Welcome to VBForums.com 
You are working on VB.Net, not VB6....
If my post was helpful to you, then express your gratitude using Rate this Post. 
And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet
Social Group: VBForums - Developers from India
Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...
-
Nov 29th, 2009, 07:30 AM
#3
Re: heeelp please
Thread moved from 'VB6 and Earlier' forum to 'VB.Net' (VB2002 and later) forum
-
Nov 29th, 2009, 11:53 AM
#4
Thread Starter
New Member
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!!!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|