Creating a Windows checkbox in a VBScript that will be executed by cscript.exe

Posted by matt_dev on Stack Overflow See other posts from Stack Overflow or by matt_dev
Published on 2009-02-27T22:13:19Z Indexed on 2010/03/26 7:23 UTC
Read the original article Hit count: 424

Filed under:
|
|
|
|

If I have a VBScript like...

inputControl1 = InputBox("Hello World")
WScript.Quit

How can a check box be created in there rather then the InputBox?

I know VBScript itself does not have a checkbox control like the InputBox, but is there some library I can use to do something like the following?

inputControl1 = CreateObject("library.checkboxcontrol")
WScript.Quit

© Stack Overflow or respective owner

Related posts about vbscript

Related posts about scripting