Hi
Maybe you could consider using the My.Settings to store the values.
Such as:
Make a My.Settings setting called: Loc as an Point type with any initial value (say) 0,0
In the application Form Closing event, use My.Settings.Loc = Me.Location, and
in the application Load event, Me.Location = My.Settings.Loc
Those settings would save the position of the Form when the application is closed, and restore the Form to the same position when the application is next run.