Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Create a .NET DLL for VFP use
Message
De
07/11/2013 09:27:15
 
 
À
07/11/2013 09:10:22
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Divers
Thread ID:
01587470
Message ID:
01587485
Vues:
69
>>Hi All,
>>We need a .NET dll, it should work with VFP. Our developer generates .NET DLL but VFP cannot see that DLL. That doesn't matter .COM .DLL or not. Just work with VFP enough for us... What he should do when generates DLL for VFP?
>
>Should be straightforward. Create a .NET class library. e.g:
namespace ClassLibrary1
>{
>    [ClassInterface(ClassInterfaceType.AutoDual)]
>    [ProgId("Class1Library.Class1")]
>    public class Class1
>    {
>        [ComVisible(true)]
>        public string Doit()
>        {
>            return "Hello World";
>        }
>    }
>}
In the project 'Properties/Application' page click 'Assembly Information' button and make sure 'Make assembly COM visible' is checked. Build the application. If all is well then Class1Library.Class1 should appear in the registry.
>
>In VFP:
object = CREATEOBJECT("Class1Library.Class1")
>? object.Doit()
Note I deliberately made this a bit more complicated than ness. in that I've defined a ProgId that is different to the Class namespace.

Viv

How would one register the class if it had been built on another machine?
Anyone who does not go overboard- deserves to.
Malcolm Forbes, Sr.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform