Damastah Posted June 13, 2008 Author Posted June 13, 2008 Can someone give me please a 2 inputbox GUI script as a template?
NELyon Posted June 13, 2008 Posted June 13, 2008 (edited) This is the second time I've posted this exact example today This is just modified a bit #include <GuiConstants.au3> #include <WindowsConstants.au3> $GUI = GUICreate("Test", 288, 150, -1, -1, $WS_SIZEBOX) $hInput = GUICtrlCreateInput("Enter something here", 44, 20) $hInput2 = GUICtrlCreateInput("Or enter something here", 44, 100) GUISetState() While 1 Switch GUIGetMsg() Case -3 Exit EndSwitch WEnd Edited June 13, 2008 by KentonBomb
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