Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Gan grow property nightmare.... 1

Status
Not open for further replies.

scotttom

IS-IT--Management
Mar 5, 2002
143
US
Is there any way to lock the position of a label so that is does not move when another field with the can grow property set to yes grows?

Thanks in advance for any help.

Scott
 
Should be possible if the top of the label is above the bottom of the can grow control.

Otherwise, you could probably use code to "print" the label. I would use the On Print event of the report section:
Code:
   Me.CurrentX = 1440 '  1" from left
   Me.CurrentY = 720  ' 1/2" from top of section
   Me.Print "Your Label"

Duane MS Access MVP
[green]Ask a great question, get a great answer.[/green] [red]Ask a vague question, get a vague answer.[/red]
[green]Find out how to get great answers faq219-2884.[/green]
 
Yeah I fudged it by putting a bunch of spaces and making the label start above the one with Can Grow set to yes.

I hate having to do stupid things though.

I appreciate the response.


Scott
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top