BKI_DichVuMatDat.NghiepVu.NhanSu.f330_lap_hop_dong_v5_detail.display_for_insert C# (CSharp) Method

display_for_insert() public method

public display_for_insert ( ) : decimal
return decimal
        public decimal display_for_insert()
        {
            Text = "F330 - Thêm mới hợp đồng";
            m_e_form_mode = DataEntryFormMode.InsertDataState;
            this.ShowDialog();
            return m_us_gd_hd.dcID;
        }

Usage Example

 //EVENTS
 private void insert_data()
 {
     f330_lap_hop_dong_v5_detail v_f = new f330_lap_hop_dong_v5_detail();
     var v_dc_id_insert = v_f.display_for_insert();
     load_data_to_grid();
     CHRMCommon.SelectRowInGrid(m_grv, "ID", v_dc_id_insert);
 }