Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Drill Detail using VB

Status
Not open for further replies.

ahhuang

Programmer
Apr 1, 2002
61
SG
I m using v8.5 for my crystal report viewer & my code is something like this:

Dim app As New CRAXDDRT.Application
Public Report As CRAXDDRT.Report
Dim db As CRAXDDRT.DatabaseTable
Set Report = app.OpenReport("c:\tmp\jdb\r1.rpt", 1)
For Each db In Report.Database.Tables
db.Location = "c:\tmp\jdb\mydb.mdb"
Next
CRViewer1.ReportSource = Report
CRViewer1.ViewReport

However I wanted to do some action on clicking the detail field in the viewer but it has no response
i used CRViewer1_DrillOnDetail event..

May I noe wat other events or place where i can put some action when clicked on specified field in the detail session?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top