Wrox Programmer Forums
|
BOOK: Professional Crystal Reports for VS.NET
This is the forum to discuss the Wrox book Professional Crystal Reports for Visual Studio .NET by David McAmis; ISBN: 9780764544033
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Professional Crystal Reports for VS.NET section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 5th, 2006, 09:24 AM
Registered User
 
Join Date: Apr 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Export drill rpt to pdf get only 1st level

Hello everybody,

I have created a drill-down report which I would like to export to pdf.
when I use the code below I always get the first level - first group - details exported.

I wish to be able to drill to the deeper levels and then using my export btn to export the current level that I'm on.

Is it possible?
Can I export the deeper level? or even the hole report...

desperately (but still have the spirit ),
Eran


MemoryStream oStream;

oStream = (MemoryStream)myReport.ExportToStream( CrystalDecisions.Shared.ExportFormatType.PortableD ocFormat );

Response.Clear();
Response.Buffer= true;
Response.ContentType = "application/pdf";
Response.BinaryWrite(oStream.ToArray());
Response.End();







Similar Threads
Thread Thread Starter Forum Replies Last Post
export to pdf nilsan ASP.NET 1.0 and 1.1 Professional 0 February 21st, 2007 06:24 AM
Fail To Export To PDF muhammadhammad78 BOOK: Professional SQL Server Reporting Services ISBN: 0-7645-6878-7 0 March 9th, 2005 01:04 AM
Exporting Crystal Report 6 RPT file into PDF forma ravs1304 Crystal Reports 2 December 29th, 2004 12:48 PM
Export to .pdf bgottschall Crystal Reports 1 July 21st, 2004 06:26 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.