You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 5, 2026. It is now read-only.
There is this line in the Obfuscation Module: sPattern = "([\s])" & sFinde & "(\_{1}[A-Za-zÀ-ßà-ÿ¨¸]{4,40}(?:\:\s|\n|\r))"
Why exactly is there (?:\:\s|\n|\r)? It breaks the obfuscation when I manually call a control event
e.g.
Private Sub MyCombobox_Change() <== This gets obfuscated correctly
Do Something
End Sub
Private Sub SomeOtherSub()
MyCombobox_Change <== This one stays and is not obfuscated, therefore break the code
End Sub
I removed (?:\:\s|\n|\r) and it worked for me. But I wonder if it has an important purpose?
There is this line in the Obfuscation Module:
sPattern = "([\s])" & sFinde & "(\_{1}[A-Za-zÀ-ßà-ÿ¨¸]{4,40}(?:\:\s|\n|\r))"Why exactly is there
(?:\:\s|\n|\r)? It breaks the obfuscation when I manually call a control evente.g.
I removed
(?:\:\s|\n|\r)and it worked for me. But I wonder if it has an important purpose?