We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some Forms have UnknownProp elements in the export. It looks like they are no harm to remove. At least we found no differences in our Access 2003 mdb.
@@ -51,7 +51,7 @@ Private Const INCLUDE_TABLES = "" ' Access source code? Private Const AggressiveSanitize = True - +Private Const EvenMoreAgressiveSanitize = True ' -------------------------------- ' Structures @@ -437,6 +437,12 @@ Private Sub SanitizeTextFiles(Path As String, Ext As String) SkipLine = True SkipBlock = True + ElseIf EvenMoreAgressiveSanitize And _ + InStr(txt, "UnknownProp =") > 0 _ + Then + + SkipLine = True + SkipBlock = True End If End If
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some Forms have UnknownProp elements in the export. It looks like they are no harm to remove. At least we found no differences in our Access 2003 mdb.
The text was updated successfully, but these errors were encountered: