Dear Friends,
Please help to create a simple dll from VB.
Can I convert my Functions included in the Modules as Separate DLL ?
Help me with simple tutorials to create DLLS
Thanx
Printable View
Dear Friends,
Please help to create a simple dll from VB.
Can I convert my Functions included in the Modules as Separate DLL ?
Help me with simple tutorials to create DLLS
Thanx
to make dll functions accessible to other programs you have
to place the functions into classes.
you then set the class instancing to global multiuse
so they are marked as public
check out this project
http://sandsprite.com/CodeStuff/fsodll.zip
its a vb recreation of the filesystem object
its kind of big and mabey overly complex it was my first dll
but it will show what you need to know