how can i display crystalreport in button click?
am working with VS2005
Answer Posted / tanveer sidiq
Palce CrystalReportViewer Object on ur form and name it to
objCrystalReportViewer
drag a button on to the same name it to btnTemp
on btnTemp click write the following lines of code
dim rdReportToPrint as new
CrystalDecisions.CrystalReports.Engine.ReportDocument()
rdReportToPrint.Load("write the path were in u have save ur
report here" )
objCrystalReportViewer.ReportSource = rdReportToPrint;
this is the way we load crystalreport dynamically
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is a linked list c#?
Does c# support const methods, properties, or events?
What is application object in c#?
How is lazy loading achieved?
what is the index value of the first element in an array?
What exactly happens when we debug and build the program?
What is interface used in c#?
What are the advantages of using partial classes?
Why do we need to override in c#?
What is callback method in c#?
What is difference between encapsulation and abstraction in c#?
What is the use of static members with example using c#.net.
code for arranging given number in possible permutation ways ex:123,321,312,132,231,213.
What is the difference between final finally and finalize in c#?
What is yield break in c#?