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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Imports & References

Status
Not open for further replies.

troark

Programmer
Aug 27, 2001
2
US
Can someone tell me what I'm missing? I've found several sample apps that include the following declarations:

Dim SessionManager As SessionMgr
Dim m_crEnterpriseSession As EnterpriseSession
Dim m_crEnterpriseService As EnterpriseService
Dim IStore As InfoStore
Dim m_crReportAppFactory As Object

However, I can not find the correct References & Imports to make them work. I get errors on each of the Types.

Thanks
 
Have you found these? I am still missing EnterpriseService

are you using XI version of crystal?

I've imported the following...
Imports CrystalEnterpriseLib
Imports CrystalInfoStoreLib
Imports CrystalReportPluginLib
Imports CrystalPluginMgrLib

"...we both know I'm training to become a cagefighter...see what happens if you try 'n hit me..."
 
These should work for most anything using RAS managed reporting:

Imports CrystalDecisions.Enterprise
Imports CrystalDecisions.ReportAppServer.CommonObjectModel
Imports CrystalDecisions.ReportAppServer.ClientDoc
Imports CrystalDecisions.ReportAppServer.Controllers
Imports CrystalDecisions.ReportAppServer.DataDefModel
Imports CrystalDecisions.ReportAppServer.DataSetConversion
Imports CrystalDecisions.ReportAppServer.ReportDefModel
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top