Crystal Report Viewing

cjaymcmeans

Well-known member
Joined
Jan 12, 2005
Messages
85
Programming Experience
3-5
Is there any other way to view crystal reports...
i've done it using the report viewer...

i was thinking po something like the one in vb6 wherein when ou call the report.. it creates a new window for the report...

is this possible in vs.net if yes how do i accoplish it..
tnx..
 
it is possible add a new form (frmReportViewer) to the project and add a ReportViewer to that form and set it to fill the entire form now in the "base" form (the one that calls for the report to be viewed) have it make an instance of frmReportViewer and show the form (probably useing the ShowDialog method to show the form)

and you're done a popup form only containing the report
 
Back
Top