Jump to content

Recommended Posts

Posted

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)

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
×
×
  • Create New...