webdad3
webdad3

Reputation: 9080

Lines of Code limit in VB6

We have a legacy VB6 application that is very procedural. This thing is gigantic!

My boss thinks that there is a 65000 lines of code limit in the editor of VB6 however, I could not find any reference to that.

Does anyone know if there is in fact a limit to the lines of code in the VB6 editor?

Upvotes: 6

Views: 2553

Answers (1)

Jacob
Jacob

Reputation: 43269

I guess he is referring to this:

Code Limitations

The amount of code that can be loaded into a form, class, or standard module is limited to 65,534 lines.

More limitations if you follow the link.

Upvotes: 12

Related Questions