Is it possible to create a win32 dll in vb.net?

  • Thread starter Thread starter Vadim Rapp
  • Start date Start date
V

Vadim Rapp

Hello:

is it possible to create a win32 dll in vb.net? to be called by other
applications, for example being an extended procedure in sql server, or
custom dll in installer.

thanks,

Vadim
 
* "Vadim Rapp said:
is it possible to create a win32 dll in vb.net? to be called by other
applications, for example being an extended procedure in sql server,
or custom dll in installer.

What do you mean by "Win32 DLL"? A DLL that exports functions like,
for example, "user32.dll" does? That's not possible.
 
You can for example create a class library, this can then be included in
other .net apps.

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Time flies when you don't know what you're doing
 
Hello:

is it possible to create a win32 dll in vb.net? to be called by other
applications, for example being an extended procedure in sql server, or
custom dll in installer.


You can create an ActiveX DLL in .NET though, but I think it still needs
the .NET runtime.
 
Back
Top