SSRS 2005 Schedule Printing DPI issue
Hi Guys,
I want to print schedully to printer, using microsoft printdeliveryprovider solution. When I print to printer schedully printing does not fit to page. I tried changing DPI in
code, dint work.
Any help highly appreciated.
Thanks,
G
gurvinder
May 26th, 2011 10:30am
Hi Gurvinder,
I am trying to involve someone familiar with this topic to a further look at this issue. There might be some time delay. Appreciate
your patience.
Thank you for your understanding and support.
Regards,
Challen Fu
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Free Windows Admin Tool Kit Click here and download it now
May 27th, 2011 6:34am
Thanks Challen, Looking forward to your replygurvinder
May 27th, 2011 8:45am
Hello Gurvinder,
Have you tried adjusting the scaling property? To do this, you can add code to pd_PrintPage method.
private void pd_PrintPage(object sender, PrintPageEventArgs e)
{
Metafile page = emfImage[printingPage]; //m_metafile = page;
if (page.Width > page.Height)
e.PageSettings.Landscape = true;
e.Graphics.DrawImage(page, 0, 0, page.Width, page.Height);
e.HasMorePages = ++printingPage < emfImage.Count;
}
Additionally you can take a look at the following link for further understanding:
http://theruntime.com/blogs/jacob/archive/2007/12/07/printing-reporting-services-2005-reports.aspx
Regards,
Swetha
Swetha Ganapatiraju | Microsoft Online Community Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Free Windows Admin Tool Kit Click here and download it now
June 3rd, 2011 7:02pm