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.
如果我有一个像...
inputControl1 = InputBox("Hello World") WScript.Quit
如何在其中创建复选框而不是 InputBox?
我知道 VBScript 本身没有像 InputBox 这样的复选框控件,但是是否有一些库可以用来执行以下操作?
inputControl1 = CreateObject("library.checkboxcontrol") WScript.Quit
你不能使用是/否 msgbox 代替吗?
dim Answer Answer=msgbox("Your question here",4)
您可以使用 HTA。这将比 VBScript 更复杂,但它会用 VBScript + HTML 编写。不过,您可能需要解决一些 IE 限制。
或者,如果您获得 VB.NET Express 和使用它的代码。当然,这是一种不同的语言。