Jump to content

multiple input boxes - can they be put into one form?


gcue
 Share

Recommended Posts

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)
Link to comment
Share on other sites

  • Developers

Have a look at the GUICtrlCreateInput() command in the helpfile ...

Edited 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.
  :)

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...