Example #1
0
        private void Save_Layout()
        {
            Hashtable htDB = new Hashtable();

            htDB["BodyHeight"] = sBodyHH;
            SettingXML sXml = new SettingXML(sProgFolder + "\\" + sSettingFile);

            sXml.WriteXML(htDB);
        }
Example #2
0
        public void Save_CompID()
        {
            // 데모용 또는, 관리용 사업자는 저장 안함.
            if (txtCompID.Text == "9999999999" || txtCompID.Text == "0000000000")
            {
                return;
            }

            Hashtable htDB = new Hashtable();

            htDB["CompanyNo"] = txtCompID.Text;
            SettingXML sXml = new SettingXML(sProgFolder + "\\" + "settings_company.xml");

            sXml.WriteXML(htDB);
        }