I am using VB.Net/C# 2005. An MDI Form with a Crystal Reports Viewer control.
The double click (and click) event in .Net looks like this (I inspected the types, the casts and types are correct)
Private Sub crvReportViewer_DoubleClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles crvReportViewer.DoubleClick
Dim crv As CrystalReportViewer = CType(sender, CrystalReportViewer)
Dim mouseArgs As MouseEventArgs = CType(e, MouseEventArgs)
End Sub
The event is getting fired I can break into and get to the above objects, now how does one determine the text that was clicked on the report inside this event, this must be a common scenario? but I can't work it out.
Thanks