Hi,
I've created a XtraReport with two EntityServerModeSources (see attached screenshot).
The data to be shown must be set by the calling form. How can I do this?
The code in the form is so far:
C# // create report
xrComputer xrc = new xrComputer();
// set data source
xrc.Datasource = ???
// show report
xFrmReportViewer frm = new xFrmReportViewer { documentViewer = { DocumentSource = xrc } };
frm.ShowDialog(this);
Best regards, Tom