How to add Crystal Reports(Standalone) to my VB.NET project
Answers were Sorted based on User's Feedback
Answer / sachin
Its already inbuilt in visual studio .
so go to solution explorer and add it
| Is This Answer Correct ? | 19 Yes | 4 No |
Answer / madhusudhanreddy t
There are 2 versions of crystal reports available
1. standalone reports like Crystal Reports 10,XI,XI R2
2. Crystal Reports which comes with Visual Studio .Net like
Crystal Reports for Visual Studio-Embedded Reports
if want to add reports, then go to Add Existing Item (right
click on the project name in the solution explorer), browse
to the .rpt file and select it or Add New Item an select
Crystal Reports from the Templates.
if you want to display reports, you should use Crystal
Repors Viewer
coding:
private ReportDocument hierarchicalGroupingReport;
protected void Page_Init(object sender,eventargs e)
{
configurecrystalreports();
}
private void configurecrystalreports()
{
hierarchicalGroupingReport=new ReportDocument();
string reportPath=server.mappath("Hierarchical
Grouping.rpt");
hierarchicalGroupingReport.Load(reportPath);
CrystalReportViewer1.ReportSource=hierarchicalGroupingReport
;
}
| Is This Answer Correct ? | 3 Yes | 1 No |
Can we use our own SQL for creating a report?
How to add Crystal Reports(Standalone) to my VB.NET project
How to print two details fields at the bottom of the page
Is it possible to join more than one universe in Busniess Objects BOE XI ? If its so Please explain how is that possible ? Thanks in advance for the people posting the answers
How many Sub Reports added in One MainReport?
4 Answers Amadeus, Aviva, CTS, Patni, Welkin,
Explain basic steps required to display a simple report in crystal?
How to conditionally suppress a field based on whether a page number is odd or even?
When looking at the join types in Crystal - what does it mean when you coose Enforce and Enforce To or Enforce From
how to create crystal reports in .net
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?
Where can we find the log file genertaed when we run a crystal report?
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)?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)