Hi Andy
Yes, you can change the size and position of a textbox in the Format event procedure for the section that contain it.
For example, this will centre the textbox between the left and right margins:
txtMemo.Left = (Me.Width - txtMemo.Width) / 2
The only caveat is that you cannot...