Twips
Access uses Twips as a measure unit.
Try
TextBox1.Left = (2.5 * 567)
to place the textbox 2.5 centimetres from the Left.
Alternatively, you can create a
Public Const CMUnit as Long = 567
in a Module
Then you can simply use:
TextBox1.Left = 2.5*CMUnit
Good luck