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 anyone help me with an answer to this question? Where is the image located, after you've placed it on the report?
Suppose 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?
Kindly Help for this Below Scenario, I am going to implement Power BI into our internal software. I’m familiar with the fact that each user can pay $9.99 a month to build and view reports but what I need to know is how can we embed Power BI into our application so that any users that log into our application can see the reports without the monthly fee. I’ve researched enough that it can be done. What I am not familiar with is how to do it or the pricing of embedding it into an application. I think they do pricing on how many renders you do or something. Would you be able to look into how we could embed it into our software and the cost?
How do you add a subreport to a report in Crystal Reports?
How to pass stored Procedure Parameters to the report?
Is there a way to export the report formulas, like totals to excel?
How to add Crystal Reports(Standalone) to my VB.NET project
Is there a way to export a report definition without writing code?
Can we use our own SQL for creating a report?
how to create crystal reports in .net
How can we improve the performance of a crystal report? OR What all performance improvement techniques used in crystal reports? (particularly CR XI)
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 uncertainty 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 the reports at run time?
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)