Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cross tab rendering issue in C Viewer V10

Status
Not open for further replies.

robercr12

Programmer
Aug 11, 2009
75
0
0
US
Hello,

I have created a cross-tab report in Crystal Reports 10 designer – lets name it “Test.rpt”. Our developers then use
Microsoft Visual Studio 2008 and create web form, place CrystalReportViewer control
with ReportSource property set to ReportDocument which been created using Load method (see code below):

---------------------
ReportDocument custReport = new ReportDocument();
String rptPath = Server.MapPath(“Test.rpt”);
custReport.Load (rptPath);
CrystalReportViewer.ReportSource = custReport;

----------------------

But any Vertical headers are rendered in-correctly (they show up horizontally).

Is there a known issue with crystal report viewer v 10 where Vertical headers are not processed
correctly?

Thanks
Rob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top