ايمن سالم
05-03-2011, 12:47 PM
http://ahmedreda89.googlepages.com/Salam2.png
في هذا الموضوع سوف نقوم بشرح كيفية حماية الاسطوانة بكلمة سر
اولا نقوم بفتح العمل المراد وضع كلمة سر ثم نضغط دبل علي اي مكان فارغ وذلك للدخول
الي خصائص الصفحة
http://i127.photobucket.com/albums/p122/veto44/image003-3.jpg
ثم نختار Script ومنها ندخل الي On Show ونضع الكود التالي
-- the 'correct' password
real_password = "password";
-- prompt the user to enter a password
user_password = Dialog.PasswordInput("Password", "Please enter the password: ", MB_ICONQUESTION);
-- compare the user's password to the 'correct' password.
-- If the user supplies the wrong password, exit the program.
if real_password ~= user_password then
Application.Exit();
end
http://img199.imageshack.us/img199/3194/image001lz.png
أما إذا أردت إدراج مجموعة من كلمات السر قم بوضع الكود التالي
--assume the user enters a bad password
correct_password = false;
-- the 'correct' password
real_passwords = {"password", "password2", "3rdPassword"};
-- prompt the user to enter a password
user_password = Dialog.PasswordInput("Password", "Please enter the password: ", MB_ICONQUESTION);
-- compare the user's password to the 'correct' password.
for j in real_passwords do
if real_passwords[j] == user_password then
correct_password = true;
end
end
--if the password was bad, exit
if not correct_password then
Application.Exit();
end
http://i76.photobucket.com/albums/j5/karim_dz/image002.gif
وهكذا انتهي الدرس والي لقاء اخر ان شاء الله
اترككم في رعاية الله
منقول لاخونا كريم
في هذا الموضوع سوف نقوم بشرح كيفية حماية الاسطوانة بكلمة سر
اولا نقوم بفتح العمل المراد وضع كلمة سر ثم نضغط دبل علي اي مكان فارغ وذلك للدخول
الي خصائص الصفحة
http://i127.photobucket.com/albums/p122/veto44/image003-3.jpg
ثم نختار Script ومنها ندخل الي On Show ونضع الكود التالي
-- the 'correct' password
real_password = "password";
-- prompt the user to enter a password
user_password = Dialog.PasswordInput("Password", "Please enter the password: ", MB_ICONQUESTION);
-- compare the user's password to the 'correct' password.
-- If the user supplies the wrong password, exit the program.
if real_password ~= user_password then
Application.Exit();
end
http://img199.imageshack.us/img199/3194/image001lz.png
أما إذا أردت إدراج مجموعة من كلمات السر قم بوضع الكود التالي
--assume the user enters a bad password
correct_password = false;
-- the 'correct' password
real_passwords = {"password", "password2", "3rdPassword"};
-- prompt the user to enter a password
user_password = Dialog.PasswordInput("Password", "Please enter the password: ", MB_ICONQUESTION);
-- compare the user's password to the 'correct' password.
for j in real_passwords do
if real_passwords[j] == user_password then
correct_password = true;
end
end
--if the password was bad, exit
if not correct_password then
Application.Exit();
end
http://i76.photobucket.com/albums/j5/karim_dz/image002.gif
وهكذا انتهي الدرس والي لقاء اخر ان شاء الله
اترككم في رعاية الله
منقول لاخونا كريم