dinamic report
dinamic report
Hello,
Please send us a sample project which reproduces the issue for analysis.
Thank you.
Please send us a sample project which reproduces the issue for analysis.
Thank you.
dinamic report
I sent a sample project which reproduces the issue, you can see it in the history of this question in the forum
dinamic report
Hello,
You can use the following code:
Thank you.
You can use the following code:
Code: Select all
protected void Button1_Click(object sender, EventArgs e)
{
StiReport report = new StiReport();
report.Load("e:\\1.mrt");
DataSet ds = new DataSet("Demo");
ds.ReadXml("e:\\Demo.xml");
report.RegData(ds);
report.Dictionary.Synchronize();
StiWebViewerFx1.Report = report;
}
protected void StiWebViewerFx1_GetDataSet(object sender, Stimulsoft.Report.WebFx.StiWebViewerFx.StiGetDataSetEventArgs e)
{
DataSet ds = new DataSet("Demo");
ds.ReadXml("e:\\Demo.xml");
e.DataSet = ds;
}
dinamic report
it still non work
the problematic lines is:
I told you that before, why do you give me that code?
it take a lot of time, we need to do it for our customer !
tnk
the problematic lines is:
Code: Select all
report.RegData(ds);
report.Dictionary.Synchronize();
it take a lot of time, we need to do it for our customer !
tnk
dinamic report
Hello,
You need add the following code in GetDataSet event of StiWebViewerFx component:
If the issue is still present, please send us full Web project which reproduces the issue for analysis.
Thank you.
You need add the following code in GetDataSet event of StiWebViewerFx component:
Code: Select all
DataSet ds = new DataSet("Demo");
ds.ReadXml("e:\\Demo.xml");
e.DataSet = ds;
Thank you.
dinamic report
you right
it's work!!!:biggrin:
thank you!
it's work!!!:biggrin:
thank you!
dinamic report
Hello,
We are always glad to help you!
Let us know if you need any additional help.
We are always glad to help you!
Let us know if you need any additional help.