How can I position a form at the bottom right corner of the screen when the form loads? I'm using Visual Basic 2010 Express.
Thanks
EDIT: I did this and it seems to work great.
Dim x As Integer
Dim y As Integer
x = Screen.PrimaryScreen.WorkingArea.Width - 400
y = Screen.PrimaryScreen.WorkingArea.Height - 270
Me.Location = New Point(x, y)