winactivate.vbs
author Shingo W. Kagami
Sun, 19 Sep 2010 05:55:48 +0900
changeset 5 105778ace30a
permissions -rw-r--r--
Have ppt_printout_ps.vbs take the printer name as an argument.
Misc. changes in Makefile.sample.
     1 If WScript.Arguments.Count <> 1 then
     2    WScript.quit
     3 End If
     4 
     5 Dim objWsh
     6 Set objWsh = WScript.CreateObject("WScript.Shell")
     7 objWsh.AppActivate(WScript.Arguments.item(0))