TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
jason
NA
1
0
CRXI & VS2005
May 15 2008 10:35 AM
I want to export to PDF in VS 2005 using CRXI, I found a method from here as follows: private void Button1_Click(object sender, System.EventArgs e){ MemoryStream oStream; // using System.IO oStream = (MemoryStream) report.ExportToStream( CrystalDecisions.Shared.ExportFormatType.PortableDocFormat); Response.Clear(); Response.Buffer= true; Response.ContentType = "application/pdf"; Response.BinaryWrite(oStream.ToArray()); Response.End(); }
But I got the error "Method ISCREditableRTFExportFormatOptions_reserved5 on type Crystaldecisions.ReportAppServer.ReportDefmodel.editablertfexportformat from assembly crystaldecisions.reportappserver.reportdefmodel, version=11.0.3300.0, culture=neutral.. is overriding a method that has been overridden" Any help?? Thanks!
Reply
Answers (
0
)
Export Crystal Report to excel
How to add sort controls in crystal reports in VS2005