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

"Class not registered" ???? I'm going crazy!!!

Status
Not open for further replies.

gonsales

Programmer
Oct 9, 2003
18
0
0
ES
I'm going crazy.....
Code of "Logon.asp" of CE9 samples.

Function GetReportDoc(ReportName)
On Error Resume Next
Set IStore = Session("IStore")
Set rptappfactory = IStore.EnterpriseSession.Service("", "RASReportFactory")
Set Session("ReportAppFactory") = rptappfactory
Set Result = IStore.Query("Select SI_ID, SI_NAME From CI_INFOOBJECTS Where SI_NAME = '" & ReportName & "'")
Set Report = Result.Item(1)
Dim ReportClientDoc
Set ReportClientDoc = rptappfactory.OpenDocument(Report)
...
Error message: "Class not registered"
What's happening?????
Thanks!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top