BKI_DichVuMatDat.NghiepVu.ThuNhapKhac.f355_tnk_chi_tiet_quy_thu_nhap_khac.handle_btn_update_clicked C# (CSharp) Method

handle_btn_update_clicked() private method

private handle_btn_update_clicked ( ) : void
return void
        private void handle_btn_update_clicked()
        {
            if(m_grv_main.FocusedRowHandle < 0)
            {
                XtraMessageBox.Show("Bạn chưa chọn dòng dữ liệu nào để sửa!", "THÔNG BÁO", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }
            var v_dc_id_gd_thu_nhap_khac = Convert.ToDecimal(m_grv_main.GetFocusedDataRow()[GD_THU_NHAP_KHAC.ID]);
            f355_tnk_chi_tiet_quy_thu_nhap_khac_detail v_frm = new f355_tnk_chi_tiet_quy_thu_nhap_khac_detail();
            v_frm.Display_for_update(v_dc_id_gd_thu_nhap_khac);
            load_data_to_grid();
        }