Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
private StiReport GetReport(string name)
{
var report = new StiReport();
using (var stream = Assembly.GetExecutingAssembly()
.GetManifestResourceStream("Managing_Reports_with_Sub_Reports." + name))
{
report.Load(stream);
}
return report;
}
GetReport("MasterDetail.mrt").Show();.mrt contains StiSubReport components that bind to the detail bands.