You can make any dialog window from script!

Do you want to make the dialog window?

  1. You can't make the GUI from standard Windows Script Host shell "wscript.exe" (without ActiveX).
  2. I can use advanced Windows Script Host shell (engine.exe). I can make the GUI.
 // File 5.w_js (JScript syntax)
Window.title = "I can make the GUI";   
Window.width = 40 * Window.cxChar;
Window.height = 10 * Window.cyChar;

Window.AddControl(100, 0, 20, 0, 80,12,"Button 1");

Window.AddControl(101,8,0,44,6,6,"32517");  // application
Window.AddControl(102,8,13,44,6,6,"32516"); // info
Window.AddControl(103,8,26,44,6,6,"32514"); // ask
Window.AddControl(104,8,38,44,6,6,"32513"); // stop
Window.AddControl(105,8,52,44,6,6,"32515"); // 

Window.AddControl(106,5,72,20,50,24,"Any dialog form. How to make?");
more