Actually you only need to put the code in the Resize event because it is always called upon loading the form:
Good luck!Code:Private Sub Form_Resize()
Text1.Move 0, 0, Me.ScaleWidth, Me.ScaleHeight
End Sub
Printable View
Actually you only need to put the code in the Resize event because it is always called upon loading the form:
Good luck!Code:Private Sub Form_Resize()
Text1.Move 0, 0, Me.ScaleWidth, Me.ScaleHeight
End Sub
THANKS!
Didn't know that Joacim, thanks.