Too many line continuation flags

VBA VBS etc.: too many line continuation flags

There is a limit to the number of lines that can be joined with a continuation character. The cause and solution of this error are as follows:

  • The lines connected by line continuation characters in the code exceed 25 lines, that is, there are more than 24 consecutive line continuation characters in one line.

    Either physically increase the length of some continuation lines to minimize line continuation characters, or split the structure into multiple statements.

For more information, select the item in question and press the F1 (Windows) or HELP (Macintosh) key.

Guess you like

Origin blog.csdn.net/jessezappy/article/details/131642833