Darknight1366 0 Posted February 21, 2011 I Want To Make A Input Box and a Msgbox. I want that When Anyone Open That Script, He/She Will Be Asked To Give/Type A Password In The TextArea. If He/She Can't Give The Password/Give Wrong Password/Click Cancel, A MsgBox Will Appear Which Will Tell A Instruction To Know The Password. And If Type The Correct Password,He Will Go To A Website Automatically. Please I'm a Very Novice. Please Help Me. Visit HugeSoft(TM) To Get Any Coding Help or Anything Share this post Link to post Share on other sites
DORA 0 Posted February 21, 2011 check this may help .. Password() Func Password() While 1 $pass = InputBox(" Login ! ", "Enter A password to login ..", "", "*" & "M9", 200, 130) If $pass = "DORA" Then ExitLoop If @error Then Exit If $pass <> "DORA" Then MsgBox(0, "Password ", " The password is ""DORA"" ") WEnd EndFunc ;==>Password Share this post Link to post Share on other sites
Darknight1366 0 Posted February 21, 2011 (edited) Thanks A Lot. But What About To Enter A Website Automatically? Edited February 21, 2011 by Darknight1366 Visit HugeSoft(TM) To Get Any Coding Help or Anything Share this post Link to post Share on other sites
Dana 29 Posted February 21, 2011 ShellExecute("http://google.com") Share this post Link to post Share on other sites