> For the complete documentation index, see [llms.txt](https://kythuat.dtechvn.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://kythuat.dtechvn.com/danh-muc/code-proc-cot.md).

# CODE PROC CỘT

* Lấy dữ liệu cột danh mục gán ra bên ngoài

```csharp
// Some code
int index = myform.grid.RowEdited;
		DataTable dt = myform.grid.dvSource.Table;
		DataRow drTuDiem = myform.grid.GetCurrentRowComboBoxCell(index, dt.Columns["TuDiem"].ColumnName);
		DataRow drDenDiem = myform.grid.GetCurrentRowComboBoxCell(index, dt.Columns["DenDiem"].ColumnName);
		string ten = drTuDiem["ten"].ToString()+" - "+drDenDiem["ten"].ToString();
		myform.grid.gridView1.SetRowCellValue(index, dt.Columns["ten"].ColumnName, ten);
```
