Adjust Textbox properties in FormHeader

D

Dale

I need help setting the form properties in the formHeader

I have a textbox named "TextBox"

I am using the code
With TextBox
.top = 0.167
.left = 0.125

The question is how to I tell it I want it in the FormHeader or Detail or
footheader


Thanks
 
A

Allen Browne

Firstly, you need to specify the measurement in twips, where 1440 twips = 1
inch, e.g.:
.Top = 240

But this won't move the control to a different section.
You can read a control's Section property, but you can't write it.
 
Top