Results 1 to 4 of 4

Thread: heeelp please

  1. #1

    Thread Starter
    New Member
    Join Date
    Nov 2009
    Posts
    3

    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

  2. #2
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    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,...

  3. #3
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    Re: heeelp please

    Thread moved from 'VB6 and Earlier' forum to 'VB.Net' (VB2002 and later) forum

  4. #4

    Thread Starter
    New Member
    Join Date
    Nov 2009
    Posts
    3

    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
  •  



Click Here to Expand Forum to Full Width