(´・∀・`) JScript .NET スレッド

このエントリーをはてなブックマークに追加
77デフォルトの名無しさん
IEの背景の色とイメージの印刷をon/offする

// SetIEPrintBackground.js
// コンパイル方法: jsc /t:winexe SetIEPrintBackground.js
import Microsoft.Win32;
import System;
import System.Windows.Forms;
var result: DialogResult = MessageBox.Show("印刷時、背景の色とイメージを印刷しますか?",
    "Internet Explorer 設定",
MessageBoxButtons.YesNoCancel);
const keyName: String = "Software\\Microsoft\\Internet Explorer\\Main";
const name: String = "Print_Background";
var regKey: RegistryKey = Registry.CurrentUser.OpenSubKey(keyName, true);
if (result == DialogResult.Yes)
    regKey.SetValue(name, "yes");
else if (result == DialogResult.No)
    regKey.SetValue(name, "no");