Michael_D
asked on
VS2005 Report designer . How to extend table to ful page
Hi,
I am trying to create an invoice using ReportViewer that comes with Visual studio (not Crystal Reports)
Everything is working just fine: I have two datasets - header and details
I show header info in a list object and details in a table
here is my problem:
My client wants to extend the table whole way down to the page bottom even if there is only one line in the invoice.
In crystal reports I simply putting the bottom border of the table into page footer section and it's done.
But my client refuse to use crystal reports in the application - I have to use the VS reporter which doesn't seem to have section like page header and page footer.
Any advice how to do this? I am thinkinng of calculating height of the table dynamically bit have no idea how to do it.
Any advice will be greatly appreciated.
I am trying to create an invoice using ReportViewer that comes with Visual studio (not Crystal Reports)
Everything is working just fine: I have two datasets - header and details
I show header info in a list object and details in a table
here is my problem:
My client wants to extend the table whole way down to the page bottom even if there is only one line in the invoice.
In crystal reports I simply putting the bottom border of the table into page footer section and it's done.
But my client refuse to use crystal reports in the application - I have to use the VS reporter which doesn't seem to have section like page header and page footer.
Any advice how to do this? I am thinkinng of calculating height of the table dynamically bit have no idea how to do it.
Any advice will be greatly appreciated.
ASKER
No it is stand alone application but I guesss the reporting engine is the same as in SSRS.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Thank you. The rectangle control worked
mlmcc