Code restriction lines in VB6

We have an outdated VB6 application that is very procedural. This thing is gigantic!

My boss believes that there are 65,000 lines of code restriction in the VB6 editor, however I could not find any link to this.

Does anyone know if there is a restriction in the lines of code in the VB6 editor?

+6
source share
1 answer

I assume that he means the following:

Code Limitations

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

Additional restrictions if you follow the link.

+12
source

Source: https://habr.com/ru/post/894399/


All Articles