Hi
How can I position a form at the bottom right corner of the screen when the form load?
I use visual basic 2010 express
(sorry I am a beginner)
thanks
EDIT: i did sth and it seems to work great
here;
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)