I am working on Microsoft Dynamics CRM reports and designed my report in SSRS vs2010 and imported into CRM reporting and then view them through asp.net report viewer vs2012.
I have used several text box controls in front of a background large text box which shows a dynamic text depend on the user. Basically I have two layers at my report. and all two layers contain text boxes with dynamic values.
But when I view the report from CRM or report viewer both of them doesn't support my design. It shows the front layer text boxes at the bottom of the page after the large background text box.
But when I save the pdf from report viewer it has the correct design. !!!!
What can I do to get my ssrs report design into CRM and asp.net report viewer.
Any comment would be valuable.
Mathee
//////////////////////////////////////////////// What can I do to set the byte array of the report to report viewer
byte[] reportByte = Singleton<ReportGenerationFacade>.Instance.createReport(service, param, paramVal, reportName);
Response.Clear();
MemoryStream ms = new MemoryStream(reportByte);
Response.ContentType = "application/pdf";
consider my reportviewer as,
Microsoft.Reporting.WebForms.ReportViewer MyReportViewer;
How should I proceed with MyReportViewer.
Mathee