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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Subreport Spacing

Status
Not open for further replies.

churdle

Programmer
Apr 2, 2000
7
US
I was wondering if someone could help me with this.....I have a report containing many subreports (each subreport is based on a separate crosstab query)....the report looks fine when printing, however on occassion, some of the subreports could shrink in size because of the data...is there a way to position the subreports vertically relative to each other??......it seems like they are locked in place from there height assignment in the properties section....I was assuming that you could position them so they would maintain an equal spacing from each other vertically....anyone have any hints??....thanks<br><br><br>churdle
 
Try something like this in the reports Detail Format event:<br><br>subreport2.Top = subreport1.Top + subreport1.Height + 1000<br>subreport3.top=subreport2.top+subreport2.height+1000<br><br>Reduce 1000 for less space increase for more space
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top