Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何制作一个允许用户更改文本的 vbs msgbox?X:msgbox=("我想改变 ''this''?" ,0+32, "如果")
我想你正在寻找:
value = InputBox("Enter something")
该value变量将设置为用户输入的任何内容。对于默认值,您可以使用:
value
value = InputBox("Enter something", , "Default value here")