Jump to content

How to add Password Graphical User Interface(GUI)


Recommended Posts

 Password Protect Script........

; AutoIt v3.3.12.0

#NoTrayIcon
; Start Main script
Global Const $MB_SYSTEMMODAL = 4096
Local $iLoop = 1, $sText = ""
While $iLoop = 1
$sText = InputBox("Password", "Please Enter Password")
If @error = 1 Then
Exit
Else
If $sText <> "Your Password" Then ; Set Password
MsgBox($MB_SYSTEMMODAL, "Error", "You Enter Wrong Password - Try Again!") ; Set Error Wrong Password
Else
$iLoop = 0
EndIf
EndIf
WEnd
; End Main script

; Password Protect Script
Global Const $ES_READONLY = 2048
Global Const $GUI_EVENT_CLOSE = -3
Global Const $WS_VSCROLL = 0x00200000

$Form2 = GUICreate("", 483, 223, 341, 218)
$Edit1 = GUICtrlCreateEdit("Name: Harry Kumar", 0, 0, 481, 217, BitOR($ES_READONLY,$WS_VSCROLL))
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
GUICtrlSetBkColor(-1, 0xFFFFFF)
GUISetState(@SW_SHOW)

While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd

:oops:  but not hide enter password, please tale me hide password.......? 

Edited by harryKumar

66726565776172656F6E74686973373737

Link to comment
Share on other sites

Your inputbox needs the 4th parameter to be set.

$sText = InputBox("Password", "Please Enter Password", "", "*")

This uses the "*" character as the password character.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...