gcue Posted January 16, 2008 Posted January 16, 2008 anyway to put multiple inboxes into a form? -thx $requestor = InputBox("Macro Builder", "Requestor:", "", "", _ -1, -1, 0, 0) $keyword = InputBox("Macro Builder", "Keyword:", "", "", _ -1, -1, 0, 0) $assigned = InputBox("Macro Builder", "Assigned To:", "", "", _ -1, -1, 0, 0) $file = FileOpen("test.txt", 1) FileWrite($file, $requestor & @CRLF) FileWrite($file, "Keyword: " & $keyword & " test" & @CRLF) FileWrite($file, $assigned & @CRLF) FileClose($file)
Developers Jos Posted January 16, 2008 Developers Posted January 16, 2008 (edited) Have a look at the GUICtrlCreateInput() command in the helpfile ... Edited January 16, 2008 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
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