Example #1
0
        public frmAddSysVar(frmThamsohethong frmThamso, string SysName, string Descript, string Sysvalue, bool Modifyable)
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();
            SysVarname = SysName;
            SysVarDescript = Descript;
            Sys_value = Sysvalue;
            Sys_Modifyable = Modifyable;

            frm = frmThamso;
            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }
Example #2
0
 private void menuItem6_Click(object sender, System.EventArgs e)
 {
     if (CheckMdiClientDuplicates("frmThamsohethong"))
     {
         frmThamsohethong frm = new frmThamsohethong();
         frm.MdiParent = this;
         frm.Show();
     }
 }