「読み取り専用」でExcelで開くサンプル。
起動中のExcelがあれば、それで開く。なければ新しいExcelを起動して、そのExcelで開く。
起動中のExcelがあれば、それで開く。なければ新しいExcelを起動して、そのExcelで開く。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<job> | |
<script language=JScript> | |
fs = new ActiveXObject('Scripting.FileSystemObject') | |
arg = WScript.Arguments | |
if(!arg.length){WScript.Quit()} | |
try{var excel = GetObject('','Excel.Application')}catch(e){var excel = new ActiveXObject('Excel.Application')} | |
excel.Visible = true | |
for(i=0,L=arg.length; i < L ;i++){ | |
excel.Workbooks.Open(arg(i) , 1 , true) | |
} | |
</script> | |
</job> |