I believe local report is *.rdlc file, not *.rdl file.
>I add to my C# solution report (rdl) and I run it locally with
> Datatable. I config the paper size on report properies to 210*297 and
[quoted text clipped - 14 lines]
>
> How I do with that?
mttc - 29 Jul 2008 06:26 GMT
> I believe local report is *.rdlc file, not *.rdl file.
you can run rdl as local if you give the DataSet like that:
adp.fill(tbl)
Dim p As New frmPreview '===given Form with Report Viewer on
it
p.RptPrev.ProcessingMode =
Microsoft.Reporting.WinForms.ProcessingMode.Local
p.RptPrev.LocalReport.ReportPath = "rpt_XXXXXX.rdl"
p.RptPrev.LocalReport.DataSources.Add(New
Microsoft.Reporting.WinForms.ReportDataSource("XXXX", tbl))
But what about the paper size?