Posted: Wed Apr 13, 2011 7:32 am Post subject: RE:Opening Folders using turing!!! plz help!!!!!!!!!!!
If you want a simple program that will ask for a password to open a folder, create a string variable with a password. Next prompt the user to enter a password. If password = stored password then Sys.Exec "Foldername". Even if it's hidden it will open.
Turing:
var password :="qwerty123456" var gPass :string
loop
put"Enter a password: "..
get gPass :*
if gPass = password then ifSys.Exec("C:/SecretFolder")then put"Folder unlocked!" exit endif else put"Invalid Password!" endif