Question:
Is there a command to open windows that is similar to MsgBox, but with a field for typing text?
Solution:
Yes, this is what VBScript’s InputBox is for.
Script sample:
Dim Input Input = InputBox("Enter your name") MsgBox ("You entered: " & Input)