Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing My.Settings.Form_Location = New System.Drawing.Point(Me.Location.X, Me.Location.Y) My.Settings.Save() End Sub Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Me.Location = New System.Drawing.Point(My.Settings.Form_Location.X, My.Settings.Form_Location.Y) End Sub