-1
私はnotepad.exe
を起動し、javascriptを使用して、次のスクリプトを使用してパラメータを渡しています。それはnotepad.exe
を起動しますが、Hello World.txt does not exists. Do you want to create?
JavaScriptを使用してnotepad.exeにパラメータを渡すことができませんでした
任意のアイデア/提案は、パラメータを渡すとnotepad.exe
がnotepad.exe
のコマンドライン引数を開くには、ファイル名、メモ帳のない初期内容ですHello World
function passParam()
{
try{
//get brwosers details
var isIE = /*@[email protected]*/false || !!document.documentMode;
if(isIE == true)
{
var oShell = new ActiveXObject("Shell.Application");
var filePath = "C:\\Windows";
var fileName = "notepad.exe";
var commandParms = "Hello World!";
oShell.ShellExecute(fileName,commandParms,filePath,"open","1");
return;
}
alert("Please use only IE to launch navigator.");
}
catch(e){
alert("Error:"+e.message);}
}
Gotcha !!引数を渡す可能性はありますか? –
いいえ、ありません。唯一の方法は、ファイルを作成して開くことです。または、あなたはこれのようにwinapiで開いた後にそれを記入することができます:http://stackoverflow.com/questions/31021002/open-new-notepad-exe-and-write-content-to-it –