until I close the form and reopen it, and choose other customer but when I choose another customer it it doesn't works correctly again.
Code: Select all
var results = (from x in asdb.TblCustomers
where x.CustID == (int)rddCustName.SelectedValue
select x).ToList();
stiSpecCust.Load("Reports//SpecCustM.mrt");
stiSpecCust.RegBusinessObject("DT", "DT", results);
stiSpecCust.Render();
stiSpecCust.Show();