VISUAL BASIC NET STANDARD 2003 create dll files

  • Thread starter Thread starter Farouq
  • Start date Start date
F

Farouq

I am about to purchase vb.net 2003 and would like to know whether this
allows u the facility to create activex dll files like the one in vb6.
What am trying to do is to hav vb forms in dll and call them from
access(vba).

ur views will be most welcomed.

thanks

Farouq
 
Farouq said:
I am about to purchase vb.net 2003 and would like to know whether this
allows u the facility to create activex dll files like the one in vb6.
What am trying to do is to hav vb forms in dll and call them from
access(vba).

ur views will be most welcomed.

thanks

Farouq

I found this

http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=517&lngWId=10

I have VB.NET Standard and generate libraries. Not sure if that is what
you were asking, though.
 
* (e-mail address removed) (Farouq) scripsit:
I am about to purchase vb.net 2003 and would like to know whether this
allows u the facility to create activex dll files like the one in vb6.
What am trying to do is to hav vb forms in dll and call them from
access(vba).

You cannot create real ActiveX DLLs, but you can create DLLs that export
functionality to COM. VB.NET Standard doesn't include a template for
creating class libraries, but this hack may help:

<http://tinyurl.com/aax2>
 
Back
Top