how can i connect crystal report 10 to vb6.0? is it possible?
i really need to know how,,,
thanks in advance!

Crystal installs with a programmable object model. The following code is derived from Crystal 8.5, but should provide you with a general reference to work from.

!! Add references to the Crystal library

'Crystal objects
Private crxApplication As New CRAXDRT.Application
Private crxReport As CRAXDRT.Report

'Report (*.rpt)
Dim mReportFile as string

Set crxReport = crxApplication.OpenReport(mReportFile, 1)

... and so on.

You can find the developers reference on the Crystal developer site.
http://diamond.businessobjects.com/

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.