VB6 Packaging and Organization
Is there any clean way to package VB6 Class Modules, other than writing DLLs or manually adding prefixes to the module names?
ED开发者_高级运维IT: I'm hoping VB6 has something along the lines of packages or namespaces from other languages.
No.
Splitting functionality into separate DLLs is as close as you can get to packages, and it's a good idea. I believe if you use registry-free COM, then you don't even need to register the DLLs when you install them.
精彩评论