Lol just googled and came across this code

Code:
        
Private Sub Form1_Load(ByVal sender As System.Object, ByVal _
    e As System.EventArgs) Handles MyBase.Load
    Dim working_area As Rectangle = _
        SystemInformation.WorkingArea
    Dim x As Integer = _
        working_area.Left + _
        working_area.Width - _
        Me.Width
    Dim y As Integer = _
        working_area.Top + _
        working_area.Height - _
        Me.Height
    Me.Location = New Point(x, y)
End Sub
Makes the form go to the bottom corner above the taskbar lol

Thanks for the help anyway