How to "Print" in Crystal Reports while using ASP DOT NET
Platform?
Answers were Sorted based on User's Feedback
Answer / rahul
using CrystalDecisions.Shared
CrystalReport1 cr= new CrystalReport1;
'here crystalreport1 is crystal report which we design.
CrystalViewer1.ReportSource = cr;
OR
we can directly print the report without showing report
CrystalReport1 cr= new CrystalReport1;
cr.PrintToPrinter(1,False,1,1);
Is This Answer Correct ? | 6 Yes | 2 No |
Answer / agshar
But This will print on Server Side not on client side , how
To print on Client side without click on Print Button on
Crystal report viewer ?
Is This Answer Correct ? | 2 Yes | 3 No |
Answer / rajavivekvarma
Bind the report to crystal report viewer.the viewer handles
the print code.
Is This Answer Correct ? | 1 Yes | 3 No |
How the data expert of flash object(after inserting flash object_right click-data expert) is useful in crt?
What does it mean when we get the error message "Invalid report version" when try to open a Crystal Report?
How many sections are there in the report
I had an Interview yesterday for a Crystal Reports Developer position. Some of these I have not done in my reporting experience and I had just a half day's notice for the interview, hence no prep time :-( 1) Is there a way to be able to change an image(company logo) dynamically in a report? Example if you have 100 reports, and with the market uncertainity if you anticipate that the company logo might change, how can you change the image just in one place and have this reflected in all teh reports at run time? 2) What is a SQL expression? 3) What are field expressions and what are the diff types? (I looked this up in the internet and never found anything with regards to types of field expressions) The interviewer really got me confused as I felt he was not clearly setting forth his questions but it could be that I was unable to understand his wording of the questions. I expect a big zero from his feedback but I am hoping this is an experience for future interviews that I face in crystal reports when I do get some more lined up. Thanks in advance! Anita New Jersey, USA.
Does Crystal Report support all the functions that we have in Oracle?
2 Answers MPS Techologies, Target,
where is the "save data with report" option?
hi.. i've created one crystal report. and one global resource file .. in crystal report there's one text object with id Text1. and i want to take the values of resource file i've got it CrystalDecisions.CrystalReports.Engine.TextObject Dtemp1 = ((CrystalDecisions.CrystalReports.Engine.TextObject)myreport .ReportDefinition.Sections["section1"].ReportObjects["Text1" ]); Dtemp1.Text = Resources.Resource.ResourceManager.GetString("Dsec1"); it is showing the correct value want i want but when i give print it is disappearing.. how to solve this please help me..
How to refresh the crystal report from the application ?
Explain reporter footer contents are move depend the page footer values?
HI all, I am developing reports using crystal reports in VS2005 in windows application. I have two crystalreports name called "studentReport" and "familyReport". I have a form with a button. If I click the button I need to show up the two reports in one report like page1, and page2. The page1 consists the "studentReport" and the page2 contains the "familyReport". The "familyReport" contains different header and footer. How to show up the two crystal reports in single crystalreportviewer?
Can we use our own SQL for creating a report?
I am not able to see any image on Crystal Report at Run time. So how can I load any image which is saved in local disk so that it can be viewed at Runtime in Crystal reports?