Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
ActiveX component can't create object.
Message
From
20/11/2000 00:17:41
Michael Vaccarello
Insurance Data Processing, Inc.
Wyncote, Pennsylvania, United States
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
ActiveX component can't create object.
Miscellaneous
Thread ID:
00443524
Message ID:
00443524
Views:
50
I created a very small program and put it as a COM object on our Windows200 Internet Server. When I do the CREATEOBJECT from an ASP page, I get:

Microsoft VBScript runtime error '800a01ad'
ActiveX component can't create object: 'NameSearch.MVVClass'

The COM object consist of the following code:

Define class MVVClass as session olepublic

Procedure GetSoundex
Parameters m.NameIn, m.xType , m.Key2Return

* In WEB PAGE you would call it like this:
* oVFPServer = createobject('servername.MVVClass')
* cPhoneticStr = oVFPServer.GetSoundex(Name, Type, Key2Return)

Declare INTEGER matcher IN ISTDLL32 ;
STRING,STRING,STRING,STRING,;
STRING,STRING,STRING,STRING

m.NameIn = m.NameIn+space(256-len(m.NameIn))
m.nameout =space(256)
m.rulebase =space(250)
m.pheonetic=space(250)
m.keycount =space(2)
m.keystack =space(300)
m.rangetable=space(750)

m.xi = matcher( @Service , @NameIn , @nameout , @rulebase , ;
@pheonetic, @keycount , @keystack , @rangetable )

Return substr(keystack, 10*Key2Return-9 ,10)
Endproc

Enddefine
Next
Reply
Map
View

Click here to load this message in the networking platform