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 |
How many Sub Reports added in One MainReport?
4 Answers Amadeus, Aviva, CTS, Patni, Welkin,
How to write a formula to change a font based upon data ?
Is there a way to export a report definition without writing code?
How many sections are there in the report
Can we use stored procedure for creating the report?
Why is Excel Report preferred over crystal reports?
3 Answers Atos Origin, Collabera, Lighthouse Technologies,
Can anyone help me with an answer to this question? Where is the image located, after you've placed it on the report?
Can we add any database field once we have chosen ?Close? button?
Where can we find the log file genertaed when we run a crystal report?
what is the "refresh" button suppose to do on the crystal report viewer?
How many .rpt files are be there in a main report having 2 sub reports?
17 Answers Accenture, Cap Gemini, CTS,
How to present data from Crystal Reports on to form?
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)