\\\
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
///
\\\
Dim BottomRight As Point = Screen.PrimaryScreen.WorkingArea.Size
BottomRight.Offset(-Me.Width, -Me.Height)
Me.Location = BottomRight
///
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.