vote up 1 vote down star

I have all the forms in one folder and all the code modules in an other folder in VB6. How do I create a better folder structure for the source files?

For example if I have twenty forms and twenty code modules, how can I create subfolders Main, Sales, and Employees and put the source files under those subfolders?

flag

3 Answers

vote up 4 vote down check

You should investigate whether some of your files could reside in a ActiveX DLL instead of the main EXE project. As Konrad pointed out the VB6 IDE project explorer doesn't support folders. Large VB6 projects, like my own, organize the classes into a hierarchy of ActiveX DLLs. For example Utility DLL which has commonly used routines used across the company's applications (file handling, etc). Business Object DLL which has the specific classes used by your applications. Report DLL has the classes that handles reports for that applications. And so on.

The gotcha is that you have to worry about compatibility issues between versions.

link|flag
vote up 4 vote down

You can (and should) create subfolders in the file system to organize your files. However, this hierarchy will not be mirrored by the VB6 project explorer, which basically provides a flat hierarchy.

link|flag
vote up 0 vote down

well if you're talking about adding a new folder from vb6 project explorer view, i'm not sure that you can do so.

but if you want to sort it you can apply some naming convention, i.e. module1_xxx, module1_yyy.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.