Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Creating OLE Server
Message
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Problèmes
Titre:
Creating OLE Server
Divers
Thread ID:
00161063
Message ID:
00161063
Vues:
57
I have created a class called person as follows:

DEFINE CLASS person AS CUSTOM OLEPUBLIC
FirstName = SPACE(30)
LastName = SPACE(45)

PROCEDURE GetName
RETURN This.FirstName + " " + This.LastName
ENDPROC
ENDDEFINE

The above class was part of a prg file in a project (myserver).
I compiled the project as an OLE DLL and called the dll "myserver.dll"

The dll was placed in C:\WINNT\SYSTEM32 and registered using REGSVR32. The registration process succeeded.

I then created another program called oletest as follows:

oTest = CREATEOBJECT("foxole.person")
oTest.FirstName = "XXXX"
oTest.LastName = "YYYY"
oTest.GetName()

When I run the program oletest, I get the following error on first line:

'Class definition "foxole.person" is not found'

What am I doing wrong? I believe that I have followed all the instruction in the VFP Developers Guide in Chapter 16.

Any help is appreciated...
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform