rep.ReportName = limit.LimitCode;
Спасибо!
Код: Выделить всё
using (StiReport rep = new StiReport())
{
rep.ReportName = limit.LimitCode;
rep.Load("UPD.mrt");
ds.ReadXmlSchema("UPD.xsd");
rep.Dictionary.ImportXMLSchema(ds);
rep.RegData(ds);
rep.Compile();
rep.Print(showPrintDialog: false);
}