tags:

views:

34

answers:

1

Is there any clean way to package VB6 Class Modules, other than writing DLLs or manually adding prefixes to the module names?

EDIT: I'm hoping VB6 has something along the lines of packages or namespaces from other languages.

A: 

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.

MarkJ
The DLL approach looks like it should do the trick, if they can be used without registration. Thanks!
derekerdmann