Quote:
btw, INI is a good method, of course u can encrypt the password, and decrypt the string in ur exe
Hmm... I could do some kind of encryption function. Set the password in the program, encrypt it with some algorithm, and save it to the INI. When someone goes to view the password, it's just a bunch of random characters. Then it gets to the problem that someone could mess up those random characters so that the password doesn't work in the program. Or find out one character, then change the password to that one character. Anyone could change the password as they wanted. Hell, they could just delete the password in general. :/
I need a good method without using the INI at all.
Quote:
InputBox Password
if (Password!=1234) ;Whatever you want the password to be.
ExitApp
Else
This wouldn't work. That method does not allow the password to be changeable. I've already used that exact method in another application, but this program I'm making, other's will be using. So the password must be able to be changeable to whatever the user wants it to be.