1、打开VB6
2、选择 ActiveX DLL,点击打开
3、在窗口输入测试代码
Public Function addstr(str As String) As String addstr = str + "123" End Function
3、生成dll,点击确定
4、查看生成的dll
5、用反编译的软件 来查看生成的dll,反编译后的代码也就能看个大概吧 可读性不是太好
反编译这篇文章比较好:https://www.freebuf.com/news/195917.html
通过VB6将ASP编译封装成DLL组件:
原文:https://www.jb51.net/article/29822.htm
工程需要添加引用,不然会出现类型未定义。