Link to home
Start Free TrialLog in
Avatar of PresageSolutions
PresageSolutionsFlag for United States of America

asked on

Export to Excel in Data Dynamic Active report

I am using Active Report 3.0 for my reporting purpose. Basically I am find hard time when client ask for export to excel functionality.

I came to know that it is not much more complicated things. There is a class available and I can used that. See my Exporting to Excel code section.

Now, I want this export functionality on report right click but report view does not allow me. I have tried context menu but it is not working. Is there any way to modify viewer property and add something in to it.

Basically I have problem with integrating functionality.
Exporting to Excel
 
System.IO.FileStream fs = new System.IO.FileStream(filename, System.IO.FileMode.Create);
xlsExport.Export(rpt.Document, fs);

Open in new window

SOLUTION
Avatar of Mike McCracken
Mike McCracken

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Mike McCracken
Mike McCracken

Recommend this be deleted unless a solution to the problem is provided.

In any case my comment is not worthy of any points.

mlmcc