Jump to content

Recommended Posts

Posted

if your talking about a inputbox that pops up

;Asks the user to enter a password.  Don't forget to validate it!
$passwd = InputBox("Security Check", "Enter your password.", "", "*")

or Gui

#include <GUIConstants.au3>

GUICreate(" My GUI input", 320,120)
$file = GUICtrlCreateInput ( "", 10,  5, 300, 20, $ES_PASSWORD)
$btn = GUICtrlCreateButton ("Ok", 40,  75, 60, 20)


GUISetState () 

$msg = 0
While $msg <> $GUI_EVENT_CLOSE
       $msg = GUIGetMsg()
       Select
           Case $msg = $btn
               exitloop
       EndSelect
Wend

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

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
  • Recently Browsing   0 members

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