3

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.

Deanna
  • 23,876
  • 7
  • 71
  • 156
derekerdmann
  • 17,696
  • 11
  • 76
  • 110

1 Answers1

0

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.

Community
  • 1
  • 1
MarkJ
  • 30,070
  • 5
  • 68
  • 111