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

Baffling error in Crystal Reports 8.5

Status
Not open for further replies.

Kenny100

Technical User
Feb 6, 2001
72
NZ
Hi Folks

Hopefully this is the correct forum for my query. I'm running Crystal Reports 8.5. on WinNT and whenever I try and print out a certain report I get the error:

"The page size was not large enough to format the contents of an object in the report"

Does anyone know what I should look into to fix this?

Cheers,
Kenny.
 
Check that the page size the report has been designed for (File menu, Printer setup), matches the paper size available to the printer.

It sounds like you have an object which spills off the size of the page. It may need to be resized, or the paper size settings readjusted.

Naith
 
Yes, make sure that whe you are designing your reports you are not pinching the margins too tightly.

You must also remeber that printers are ging to view fonts differently. Some larger some smaller for the same size font. This minute adjustment could be enough to push something (text, image) outside the canvas boundary.

Some printers can also only support .5" margins and no less.

Cheers,

SurfingGecko
 
Use 'Zoom' to 75% or 50% to see if something is 'over the edge'

Use 'Can Grow' on a field that may contain a lot of text.

Madawc Williams
East Anglia
Great Britain
 
Try something like:

@ServerGroup Header :
whileprintingrecords;
numbervar MyTotal := 0;
numbervar TimeGroupCounter := 0;

@TimeGroup Footer (assuming this is the current group level for the RT):
whileprintingrecords;
numbervar MyTotal := MyTotal+{#YourRunningTotal};
numbervar TimeGroupCounter := TimeGroupCounter+1;

@ServerGroup Footer:
whileprintingrecords;
numbervar MyTotal;
numbervar TimeGroupCounter;
MyTotal/TimeGroupCounter

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top