Lol just googled and came across this code
Makes the form go to the bottom corner above the taskbar lolCode: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
Thanks for the help anyway




Reply With Quote