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:10:22
 
 
À
07/11/2013 06:19:11
Metin Emre
Ozcom Bilgisayar Ltd.
Istanbul, Turquie
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:
01587482
Vues:
103
This message has been marked as the solution to the initial question of the thread.
J'aime (2)
>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.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform