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 do you format your crystal reports so that on exporting to word doc or pdf it will not lose the orginal format
Is it possible to export crystal report with linked subreports in one excel sheet?If yes,then how?
How can we improve the performance of a crystal report? OR What all performance improvement techniques used in crystal reports? (particularly CR XI)
Why do we use crystal reports when we have reporting tools in bo itself?
How can i normalize a Crystal Report..??
How to refresh the crystal report from the application ?
Reports can be optimized for web viewing using which of the following strategies: a. Using subreports instead of linking tables b. Avoiding maps c. Using the Page N of M special field to help users understand how many pages are in the report d. Saving reports as version 10 e. Avoiding reports with drill-down capabilities
How many Sub Reports added in One MainReport?
4 Answers Amadeus, Aviva, CTS, Patni, Welkin,
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)?
How to write a formula to change a font based upon data ?
How to pass stored Procedure Parameters to the report?
How do we connect to the database?
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)