Me.Location = New Point(My.Computer.Screen.Bounds.Width - Me.Width, My.Computer.Screen.Bounds.Height - Me.Height)
C# için;
this.Location = new Point((My.Computer.Screen.Bounds.Width - this.Width), (My.Computer.Screen.Bounds.Height - this.Height));
Konu: Form App ekran konumu
Me.Location = New Point(My.Computer.Screen.Bounds.Width - Me.Width, My.Computer.Screen.Bounds.Height - Me.Height)
this.Location = new Point((My.Computer.Screen.Bounds.Width - this.Width), (My.Computer.Screen.Bounds.Height - this.Height));