| using System; | 
| using System.Collections.Generic; | 
| using System.ComponentModel; | 
| using System.Data; | 
| using System.Drawing; | 
| using System.Text; | 
| using System.Windows.Forms; | 
| using Pub_Class; | 
|   | 
| namespace NETERPNoWin | 
| { | 
|     public partial class Frm_MESSetIni : Form | 
|     { | 
|         public Frm_MESSetIni() | 
|         { | 
|             InitializeComponent(); | 
|         } | 
|   | 
|         private void cmdOK_Click(object sender, EventArgs e) | 
|         { | 
|             ClsIni oIni = new ClsIni(); | 
|             ClsIni.WriteIni("Dept", "DeptID", this.txtHDeptID.Tag.ToString(), Pub_Class.ClsPub.AppPath + @"\" + "HXErp_SY.ini"); | 
|             ClsIni.WriteIni("Dept", "DeptName", this.txtHDeptID.Text.Trim(), Pub_Class.ClsPub.AppPath + @"\" + "HXErp_SY.ini"); | 
|             ClsIni.WriteIni("OPenWin", "gnmc", this.txtHOPWin.Text.Trim(), Pub_Class.ClsPub.AppPath + @"\" + "HXErp_SY.ini"); | 
|             this.Close(); | 
|         } | 
|   | 
|         private void cmdCancel_Click(object sender, EventArgs e) | 
|         { | 
|             this.Close(); | 
|         } | 
|   | 
|         private void cmdHDeptID_Click(object sender, EventArgs e) | 
|         { | 
|             DAL.ClsGy_Department_View oDept = new DAL.ClsGy_Department_View(); | 
|             if (oDept.RefreshView()) | 
|             { | 
|                 this.txtHDeptID.Text = oDept.oModel.HName; | 
|                 this.txtHDeptID.Tag = oDept.oModel.HItemID.ToString(); | 
|             } | 
|             else | 
|             { | 
|                 this.txtHDeptID.Text = ""; | 
|             } | 
|         } | 
|   | 
|         private void Frm_MESSetIni_Load(object sender, EventArgs e) | 
|         { | 
|             ClsIni oIni = new ClsIni(); | 
|             string sID = ClsIni.ReadIni("Dept", "DeptID", Pub_Class.ClsPub.AppPath + @"\" + "HXErp_SY.ini"); | 
|             string sName = ClsIni.ReadIni("Dept", "DeptName", Pub_Class.ClsPub.AppPath + @"\" + "HXErp_SY.ini"); | 
|             string sWinName = ClsIni.ReadIni("OPenWin", "gnmc", Pub_Class.ClsPub.AppPath + @"\" + "HXErp_SY.ini"); | 
|             txtHDeptID.Tag = sID; | 
|             txtHDeptID.Text = sName; | 
|             txtHOPWin.Text = sWinName; | 
|         } | 
|   | 
|         private void button1_Click(object sender, EventArgs e) | 
|         { | 
|   | 
|         } | 
|     } | 
| } |