Exposing Functions to COM in VB.NET

95se5m

Newcomer
Joined
Oct 4, 2005
Messages
8
I am trying to expose subs and functions from a DLL written in VB.net to COM to be used by a PointOfSale system that uses COM. Anyone have any ideas? My dll is already strongly named using the SN.exe tool.

Any help would be appreciated. Thank you.
 
georgepatotk said:
SN.exe means what?

It's the Microsoft Strong Name Utility, it creates the .snk file that you attach to the assembly using the following code:

Code:
<Assembly: AssemblyKeyFile("C:\somepath\somefile.snk")>
 
Back
Top