Actually you only need to put the code in the Resize event because it is always called upon loading the form:
Code:
Private Sub Form_Resize()
    Text1.Move 0, 0, Me.ScaleWidth, Me.ScaleHeight
End Sub
Good luck!