Skip to content
New issue

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

Filter out UnknownProp #9

Open
Xarno opened this issue Oct 28, 2013 · 0 comments
Open

Filter out UnknownProp #9

Xarno opened this issue Oct 28, 2013 · 0 comments

Comments

@Xarno
Copy link

Xarno commented Oct 28, 2013

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant