how can i display crystalreport in button click?
am working with VS2005
Answer / 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 |
What is use of a HashTable in .NET?
What is toint32 c#?
What are Regex / regular expressions ?
Is stringbuilder thread safe c#?
Why ienumerable is used in c#?
Explain ACID rule of thumb for transactions.
What does clr stand for?
Why do we use dataset in c#?
Can you inherit multiple interfaces?
c# code for how to merge two sorted arrays Input : A = 2,5,8,4 B = 3,9,10,5 Output : 2,3,4,5,5,8,9,10
What is task parallel library?
When should we use delegates in c#?