Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include 'ExtInputBox.au3'
  2.  
  3. $sData = _ExtInputBox("Login", "Username|Password", Null, "2")
  4.  
  5. If $sData = False Then
  6. MsgBox(0, "", "You pressed cancel, exit or timeout ended.")
  7. Else
  8. MsgBox(0, "You entered:", "Username: " & $sData[1] & @CRLF & "Password: " & $sData[2])
  9. EndIf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement