private void Form_Load(object sender, EventArgs e)
        {
            try
            {
                base.InProgramID = ProID;
                base.InProgramNM = ProNm;

                this.SetFunctionLabel(EProMode.PRINT);
                this.InitialControlArray();
                base.Btn_F10.Text = "";

                //起動時共通処理
                base.StartProgram();

                mibl = new  KaitouNoukiTouroku_BL();
                CboStoreCD.Bind(string.Empty);
                CboSoukoName.Bind(string.Empty);

                ScOrderCD.Value1 = "1";

                SetFuncKeyAll(this, "100001000011");
                Scr_Clr(0);
            }
            catch (Exception ex)
            {
                //エラー時共通処理
                MessageBox.Show(ex.Message);
                EndSec();
            }
        }
Пример #2
0
        private void Form_Load(object sender, EventArgs e)
        {
            try
            {
                knbl = new KaitouNoukiTouroku_BL();

                InitialControlArray();
                InitScr();
                detailControls[0].Focus();
            }
            catch (Exception ex)
            {
                //エラー時共通処理
                MessageBox.Show(ex.Message);
            }
        }