示例#1
0
        private void button5_Click(object sender, EventArgs e)
        {
            Hide();
            config.frmConfig frm = new config.frmConfig();
            frm.ShowDialog();
            Show();

            // 環境設定項目よみこみ
            config.getConfig cnf = new config.getConfig();
        }
示例#2
0
        private void Form1_Load(object sender, EventArgs e)
        {
            // フォーム最大値
            Utility.WindowsMaxSize(this, this.Width, this.Height);

            // フォーム最小値
            Utility.WindowsMinSize(this, this.Width, this.Height);

            // 自分のコンピュータの登録がスキャン用PCに登録されているか
            getPcName();

            // OCR実施PCか?
            if (Properties.Settings.Default.ocrStatus == global.flgOn)
            {
                button1.Enabled = true;
            }
            else
            {
                button1.Enabled = false;
            }

            // 環境設定項目よみこみ
            config.getConfig cnf = new config.getConfig();
        }