Is it possible to get my form to open up in the bottom right of my screen when it is run?
Thanks!
Printable View
Is it possible to get my form to open up in the bottom right of my screen when it is run?
Thanks!
Yes :p
Edits:
here is the code
Maybe there are lots of other good ways.VB Code:
Dim scr As System.Windows.Forms.Screen scr = System.Windows.Forms.Screen.PrimaryScreen Me.StartPosition = FormStartPosition.Manual Me.Top = scr.WorkingArea.Height - Me.Height Me.Left = scr.WorkingArea.Width - Me.Width