Dim pt As New Point(x,y)
or something similar. X and Y are the two integers that define the point. You can use text boxes to allow the user to set the values of x and y, then bind them to this point after that, just be careful to restrict them to use only integers. Use the CInt() method for that. Then, just set Form1.Location to this point. -Mobius