Hello, I'm in need of some help.
I have everything coded in my program that I want, but I need to obfuscate the code. At the moment, the file can be opened with notepad and most of the strings can be read from that. I need to obfuscate the code to prevent this.
I could use the multi string mixing method on sensitive parts of my code, e.g.
Dim ex As String, ample As String
ex = "hel"
ample = "lo"
And then write ex & ample, but this could easily be disassembled, so I need a better method.
I don't want to use an encryption program, because it won't work with the way I'm distributing this.
Thankyou.