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
Kheen On Cheah
NA
9
0
Problem printing reports (Crystal Reports XI) using C# codes
Nov 13 2006 9:40 PM
I have an application that basically grabs the crystal report specified and send it to the printer for printing. My working version was using Crystal Reports 8.
Recently, I'm testing to print reports created using Crystal Reports XI. I've included the new crystal decisions library into my project but whenever I try to load the report, I keep getting "Load report failed" error.
ReportDocument objDoc=
new
ReportDocument();
// Load the report
objDoc.Load(strReportFilename);
<-- Error happens here!
...
...
...
// Print the report
objDoc.PrintToPrinter(
int
.Parse(copies),
true
, 0, 0);
Reply
Answers (
4
)
Q: Path parameter for running console app from network?
adding extra colums to my existing datagrid