Create DLL in VB.NET

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I'm trying to create a dll in VB.NET, the DLL needs to be a C type DLL, i.e. not an Active X Dll..

an example in C would be...

Example - test_ep.c

#include
/* This function simply returns the larger of x and y*
long find_max(int x,int y)

if (x >= y) return x
else return y


is this possible......

Regard
 
* "=?Utf-8?B?TmljayBXcmlnaHQ=?= said:
I'm trying to create a dll in VB.NET, the DLL needs to be a C type DLL, i.e. not an Active X Dll...

Both, Ax and "C type" DLLs are not supported by VB.NET.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top