I am using data report to display report.
My database is Ms Access.
My problem is when I try to display certain report, the error occured was:
Reportwidth is larger than paperwidth
What can I do to correct the error?
Printable View
I am using data report to display report.
My database is Ms Access.
My problem is when I try to display certain report, the error occured was:
Reportwidth is larger than paperwidth
What can I do to correct the error?
make the report lay out to landskape
yes u can
go to ur report
and decrease its width
this type of error occur when data report weidth is more then 6.5 inch
so check it urself
then printing problem occurQuote:
make the report lay out to landskape
i thought is is not batter solution
what is ur report width
But, I cant decrease the size.
I still need the size to display the report.
How can I set the page to landscap or portrait?
In properties, my reportwidth is 12525.
open ur report
file menu of report >> properties >> Print setup
follow this way
Mr Noshaba
I really cant follow your instruction.
Can you be more specific where to get the file menu of report and the rest of instruction.
Thanks in advance.
For removing your error make report less then 9200 widthQuote:
In properties, my reportwidth is 12525.
You can use crystal report for bigger report
Install VB SP6.
Then u can set ur report orientation either portrait or landscape.
like
VB Code:
report1.Orientation=rptOrientLandscape
I think Noshaba thought you where using an MS Access report.
If you are using a VB6 datareport, you can set it to landscape in the initialize event of the datareport.
VB Code:
Private Sub DataReport_Initialize() Me.Orientation = rptOrientLandscape End Sub
shouldnt you also search for a Pageset.dll ? i had a similar problem and found a link on msdn that explained this for the datareport, and downloaded the dll and didnt have a problem since.
Quote:
Originally Posted by whythetorment
from where u get it??
thanks
Look at the paer size set for your default printer in the printer properties. Then set the reportwidth of your datareport accordingly. Because it is the reportwidth of the datareport that matters and not the width property of the datareport. Pls check.