Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Making a DLL

Status
Not open for further replies.

Smitty020

MIS
Jun 1, 2001
152
0
0
US
I've created a public function in VB. Now I wish to make it a dll. I started by selecting the Active X DLL at the beginning. Now, how do I save it as Interest.dll, so that I can use it in another VB app?

Any ideas?

Thanks for your help!
 
One of ways to do it is to create a public class file in your dll object and to copy your function there. Then compile the dll, load it in some test project as reference and you'll be able to use your function.
 
A note, A VB DLL is a ActiveX DLL not a normal DLL with exported functions so it can't be easily used by other languages like a normal DLL can.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top