Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
ActiveX component can't create object.
Message
De
20/11/2000 00:17:41
Michael Vaccarello
Insurance Data Processing, Inc.
Wyncote, Pennsylvanie, États-Unis
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Titre:
ActiveX component can't create object.
Divers
Thread ID:
00443524
Message ID:
00443524
Vues:
45
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
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform