Thông báo lỗi chắc bạn đã rõ, vậy thử sửa đoạn này:
Code:
if (dsach.Position > -1)
{
txtMaMon.Text = dsach.Current(ds, "DMMON.MaMon");
txtTenMon.Text = dsach.Current(ds, "DMMON.TenMon");
txtSoTiet.Text = dsach.Current(ds, "DMMON.SoTiet");
}
thành:
Code:
if (dsach.Position > -1)
{
DataRowView drv = (DataRowView) dsach.Current;
txtMaMon.Text = drv["MaMon"];
txtTenMon.Text = drv["TenMon"];
txtSoTiet.Text = drv["SoTiet"];
}
Hy vọng là chạy.