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();