Display_for_update() public method

public Display_for_update ( decimal ip_dc_id_thu_nhap_khac ) : void
ip_dc_id_thu_nhap_khac decimal
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();
 }