E Eng Teng May 2, 2008 #1 How do I set my form start at the right bottom site in any monitor resolution? Regards, Tee
C Cor Ligthert[MVP] May 2, 2008 #2 Eng, \\\ Private Sub Form1_Load(ByVal sender As System.Object, _ ByVal ex As System.EventArgs) Handles MyBase.Load Top = Screen.PrimaryScreen.WorkingArea.Height - Height Left = Screen.PrimaryScreen.WorkingArea.Width - Width End Sub /// Cor
Eng, \\\ Private Sub Form1_Load(ByVal sender As System.Object, _ ByVal ex As System.EventArgs) Handles MyBase.Load Top = Screen.PrimaryScreen.WorkingArea.Height - Height Left = Screen.PrimaryScreen.WorkingArea.Width - Width End Sub /// Cor
H Herfried K. Wagner [MVP] May 2, 2008 #3 Eng Teng said: How do I set my form start at the right bottom site in any monitor resolution? Click to expand... \\\ Dim BottomRight As Point = Screen.PrimaryScreen.WorkingArea.Size BottomRight.Offset(-Me.Width, -Me.Height) Me.Location = BottomRight ///
Eng Teng said: How do I set my form start at the right bottom site in any monitor resolution? Click to expand... \\\ Dim BottomRight As Point = Screen.PrimaryScreen.WorkingArea.Size BottomRight.Offset(-Me.Width, -Me.Height) Me.Location = BottomRight ///