if you laod the form before showing it you can move it to wherever you want

Code:
Private Sub Command1_Click()
 Load Form2
 Form2.Move 0, 0 'move it to wherever you want it
 Form2.Show
End Sub