I have a report that does something funny to the table at the end of a page. Please see the attached highlighted yellow region. How can I make the table not add this strange outer, blank border at the end of every page?
Please help. Thank you!!!!


public class DataItem{ public string ItemHeader { get; set; } public string ItemContent { get; set; } public string ItemFooter { get; set; }}public class ReportingDataSource00{ public ReportingDataSource00() { DataItems = new List<DataItem> { new DataItem {ItemContent = "ItemContent00", ItemFooter = "Footer00", ItemHeader = "Header00"}, new DataItem {ItemContent = "ItemContent01", ItemFooter = "Footer01", ItemHeader = "Header01"} }; ReportHeader = "Header"; ReportFooter = "Footer"; } public string ReportHeader { get; set; } public string ReportFooter { get; set; } public IEnumerable<DataItem> DataItems { get; set; }}


Hi,
Finally discovered why some of my stored procedures are not returning the right list of columns on the Report Designer...
It's because the engine is sending "SET FMTONLY ON" to the SQL Server to get the list of columns... the big problem is this don't work when we use Temporary Tables inside of the store procedures (SPs).
I start to add SET FMTONLY OFF on the SPs that are being used on the Reports.
I would like to know if the use of this workaround have any other implications on the reports engine and I can continue to using it?
Thank You

Hi,
Attached is a picture where we can notice like a random position of the bars along the series.
How to center the bars on the middle of the series? and if possible define a width for them?
Thank you
Hi there,
I'm currently in the process of creating an invoice document and seem to have hit a bit of a stumbling block.
My report (a sales invoice) is based on a view which is looking at data derived from 2 tables:
InvoiceHead - a single record per job listed on the invoice.
InvoiceLines - a record per line on the invoice (each job COULD have multiple lines)
The issue I've run into is that carriage is only recorded at the Head level... which means I can't simply sum it up.
To get around this in Crystal (which I've been using for pushing 20 years now), I'd either:
create a running total which would add the carriage value in when the InvoiceHeadID changes
or
create a numberVar and manually add the value when required.
... but I can't see any way to do either of these in the designer and Google doesn't seem to have any apparent examples.
Any help will be gratefully appreciated.
Cheers in advance,
Mat

Question for the forum.
When creating 1D barcodes, which Module value works best?
I am experimenting around and found the following but am looking for others to reply as to what they are having success with (using Code128).
Stretch = Not liking this as it fills the entire container and is resulting in difficult to read barcodes as the bars become to wide.
1pt = Seems to look correct, but I am finding it troublesome to scan with inexpensive readers.
1px = Seems to look correct, seems to scan ok...but can be troublesome sometimes.
So what are the recommend settings to use to ensure a good consistent read?
I am developing labels to go on products and they need to be able to scan properly the first time everytime.