Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

keep windows from take over right side of screen like facebook messenger, how do i make that so that my app stays on that side of the screen and puts all the other windows on the right side of the screen.

I need the code for VB.NET code

share|improve this question

1 Answer

up vote 0 down vote accepted

Something like this should align the form to the right hand side of the screen. It won't stop the form being repositioned by the user though

Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
    RightAlignForm(Me)
End Sub    

Private Sub RightAlignForm(ByRef frm As Form)
    Dim currentArea = Screen.FromControl(frm).WorkingArea
    frm.Left = currentArea.Left + currentArea.Width - frm.Width
End Sub
share|improve this answer
Thank you, but its not what i wanted my form does that already but i wanted it to move all the other windows over like what the facebook app does... – T3rr11 Aug 15 '12 at 8:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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