예제 #1
0
파일: Program.cs 프로젝트: eploentham/RDPO
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            ControlRDPO cRDPO = new ControlRDPO();

            Application.Run(new RDPOToERP(cRDPO));
        }
예제 #2
0
        public RDPOToERP(ControlRDPO crdpo)
        {
            //this.FormBorderStyle = FormBorderStyle.None;
            this.Size          = new Size(formwidth, formheight);
            this.StartPosition = FormStartPosition.CenterScreen;
            cRDPO = crdpo;

            initConfig();
            cTxtL = txtFileName.BackColor;
            cTxtE = Color.Yellow;
        }