Is it possible to get my form to open up in the bottom right of my screen when it is run? Thanks!
Yes Edits: here is the code 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 Maybe there are lots of other good ways.
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
Last edited by Lunatic3; Jul 14th, 2003 at 01:45 PM.
'Heading for the automatic overload' Marillion, Brave, The Great Escape, 1994 'How will WE stand the FIRE TOMORROW?' Eloy, Silent Cries and Mighty Echoes, The Vision - Burning, 1979
Forum Rules