In order to set some strings as "bad" the program check
if they are assigned to some special variables, object,
etc.
For example if there is a string like that:
sql = "SELECT field FROM table"
The program set it as "bad" because "sql" is a <marked
variable>.
The list of these marked variables is in ExclFile.ini.
But sometimes the marked variables are followed by a
multiline string. For example:
sql = "SELECT field " & _
"FROM table"
Therefore the program must acknowledge that "FROM
table" is part of a "bad" string.
This normally works, but somethimes seems not.