position textbox at runtime

  • Thread starter Thread starter mcnews
  • Start date Start date
M

mcnews

how do i position a textbox where i want it at runtime.
tried .left = but no go.

tia,
mcnewsxp
 
how do i position a textbox where i want it at runtime.
tried .left = but no go.

tia,
mcnewsxp

..Left = WHAT!!!!

All Access measurements are in Twips (1440 per inch).
Me.[ControlName].Left = 2*1440
will position a control 2 inches from the left edge of the form.
 
Back
Top