Код: Выделить всё
StiReport repost = new StiReport();
report.Load(@"report.mrt");
((StiText)report.Pages[0].Components["Text1"]).Text.Value = "проверка"
Код: Выделить всё
StiReport repost = new StiReport();
report.Load(@"report.mrt");
((StiText)report.Pages[0].Components["Text1"]).Text.Value = "проверка"
Код: Выделить всё
StiReport report = new StiReport();
report.Load("e:\\Report.mrt");
StiText txt = report.GetComponents()["Text1"] as StiText;
txt.Text = "проверка";
Сделать это Вы можете в магазине Allsoft http://allsoft.ru/search.php?q=stimulsoft .и самое важное, в данный момент я балуюсь demo версией, есть ли возможность купить у вас продукт по безналу учитывая мое географ положение.....спасибо
Код: Выделить всё
((StiSqlDatabase)report.Dictionary.Databases["Connection"]).ConnectionString = newConnectionString;
Код: Выделить всё
((StiSqlSource)report.Dictionary.DataSources["DataSourceName"]).SqlCommand = newSqlCommand;