Click here to Skip to main content
15,919,132 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
I am using c# in VS2008 professional edition. In my windows application i have crystal reports. When i click on a field in crystalreport i want to get the value of that field. I searched net and found that using the following code i can implement it.

Event fires when a report object has been double clicked in the viewer.

Namespace CrystalDecisions.Windows.Forms Namespace

Assembly CrystalDecisions.Windows.Forms (CrystalDecisions.Windows.Forms.dll)

C#
public event CrystalDecisions.Windows.Forms.PageMouseEventHandler DoubleClickPage 


C#
private void crystalReportViewer_DoubleClickPage(object sender, PageMouseEventArgs e)
{
 MessageBox.Show(e.ObjectInfo.ObjectType.toString());
}


I tried to find the above event and PageMouseEventArgs class but nothing found.
Is this available in VS2008??? If yes how??? If it not why???
Any one have an idea????
Posted
Updated 22-Mar-12 19:59pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900