bok Posted August 7, 2008 Posted August 7, 2008 is there a way to remove the cancel button from the inputbox?
Szhlopp Posted August 7, 2008 Posted August 7, 2008 (edited) is there a way to remove the cancel button from the inputbox? Use this: #include <GUIConstants.au3> $Input = GUICreate("Input", 329, 125, 194, 122) $Input1 = GUICtrlCreateInput("", 11, 66, 307, 21) $Label1 = GUICtrlCreateLabel("Please enter the password", 9, 9, 129, 17) $Button1 = GUICtrlCreateButton("OK", 100, 94, 112, 26) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE EndSwitch WEnd Then when your done, GUIDelete($input) Edited August 7, 2008 by Szhlopp RegEx/RegExRep Tester!Nerd Olympics - Community App!Login UDFMemory UDF - "Game.exe+753EC" - CE pointer to AU3Password Manager W/ SourceDataFiler - Include files in your au3!--- Was I helpful? Click the little green '+'
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now