VB .NET Interoperability
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
I created a DLL in VB .NET and I want to use it in an excel application, but I cannot create a reference to it. Is there any other way to use it in Excel Application? Thank you in advance
You need to put a 'com-wrapper' around the dll to allow it to be used via create object. Progid - the string you use in the createobject argument (project.class) Guid - get a new generated one from the IDE of vs.net Imports System.Runtime.InteropServices _ Public Class CLASSNAME . . . End Class