Crystal Reports Viewer

  • Thread starter Thread starter Aaron Smith
  • Start date Start date
A

Aaron Smith

Is there a way with the CR For .Net Viewer control to get the field and
the value if a user clicks on a field in a report? I know if previous
versions you could do this... If you can't do it with the CR for .Net
that comes with Visual Studio, what is needed to do that?

Aaron
 
Search for "Public Instance Events" and CrystalReportViewer Members
in the crystal report section of VS help.
Drill Event fires when a report is drilled down on.
DrillDownSubreport Event fires when the user drills down on a subreport.
HandleException Event fires when an exception occurs in the Viewer.
Navigate Event fires when the user navigates through a report.
ReportRefresh Event fires when the data in the report is refreshed.
Search Event fires when text is searched for in the report.
ViewZoom Event fires when zoom level of the viewer changes.
 
Yea, I already read through those and there isn't anything in there to
get the field and the value of that field that they click on...

For example, if we have a listing of open purchase orders, we want to be
able to click on the open purchase order in that report and have it open
the form to edit that purchase order... This was possible in CR version
7 and 8 with regular VB.. Is this not available anymore in the .Net
versions? What about the CR 10 for .Net?

Aaron

Mark said:
Search for "Public Instance Events" and CrystalReportViewer Members
in the crystal report section of VS help.
Drill Event fires when a report is drilled down on.
DrillDownSubreport Event fires when the user drills down on a subreport.
HandleException Event fires when an exception occurs in the Viewer.
Navigate Event fires when the user navigates through a report.
ReportRefresh Event fires when the data in the report is refreshed.
Search Event fires when text is searched for in the report.
ViewZoom Event fires when zoom level of the viewer changes.
 
Hi!

I also have one problem with Crystal Report Viewer (crv). When I
select Print button on my form I change my cursor to busy:

Cursor = curBusyApp 'busy on my Form

frm.crv.Cursor = curBusyApp 'on the report form

frm.ShowDialog() 'Show report as dialog
Cursor = Cursors.Default 'default again for my form

Because my report show on screen as dialog I don't know how to set
cursor on the report form back to default when my whole report appear
on the screen (all pages is loaded in the report).

Anybody know which event I have to fire on crv when all data is loaded
so that cursor will be in default state again or any other method to
solve that?


Regards,
Billy
 
Back
Top