Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Instantiate A VFP DLL In VB
Message
General information
Forum:
Visual Basic
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00476997
Message ID:
00477076
Views:
25
>Can anyone tell me how to istantiate and call a VFP DLL in VB?
>
>Thanks

The usual Set oServer = CreateObject("mydll.myclass") should work. Or better yet, add the reference to the DLL's type library and use early binding by using:
Dim oServer As mydll.myclass
Set oServer = New mydll.myclass
Previous
Reply
Map
View

Click here to load this message in the networking platform