BKI_DichVuMatDat.NghiepVu.F395_nhan_vien_phu_cap_de.display_for_insert C# (CSharp) Method

display_for_insert() private method

private display_for_insert ( ) : void
return void
        internal void display_for_insert()
        {
            m_e_form_mode = DataEntryFormMode.InsertDataState;
            m_chk_hieu_luc.Checked = true;
            m_chk_hieu_luc.Enabled = false;
            this.ShowDialog();
        }

Usage Example

 private void m_cmd_them_Click(object sender, EventArgs e)
 {
     try
     {
         F395_nhan_vien_phu_cap_de v_f = new F395_nhan_vien_phu_cap_de();
         v_f.display_for_insert();
         load_data_2_grid();
     }
     catch (Exception v_e)
     {
         CSystemLog_301.ExceptionHandle(v_e);
     }
 }