Hello,
1.Before calling the Show method , i do not want to display any dialog boxes ,need to how to do it?
2.If the data changes, how to update the StiViewerControl ?
3.In stiviewercontrol, I modified the table of the cell values, the application can do to get the value of the modified ?
Thanks .
Ask the usage of StiViewerControl
Ask the usage of StiViewerControl
Hello,
StiViewerControl.Report = stiReport;
Thank you.
Which dialog boxes do you mean?lampson wrote:1.Before calling the Show method , i do not want to display any dialog boxes ,need to how to do it?
Do you need to compile, render a report (execute Compile(), Render()) and pass it to StiViewerControl?lampson wrote:2.If the data changes, how to update the StiViewerControl ?
StiViewerControl.Report = stiReport;
Sorry, maybe we did not exactly understand your question. Could you explain your issue in more details?lampson wrote:3.In stiviewercontrol, I modified the table of the cell values, the application can do to get the value of the modified ?
Thank you.
Ask the usage of StiViewerControl
Hello .
1.Before calling the Show method , i do not want to display any dialog boxes ,need to how to do it?
The dialog box that seems to be compiled
2.If the data changes, how to update the StiViewerControl ?
I have solved this
3.In stiviewercontrol, I modified the table of the cell values, the application can do to get the value of the modified ?
In the preview, there was a data table, I modified some of the value of the cell , in the C# code, I can get the latest value?
Thank you for your answer
1.Before calling the Show method , i do not want to display any dialog boxes ,need to how to do it?
The dialog box that seems to be compiled
2.If the data changes, how to update the StiViewerControl ?
I have solved this
3.In stiviewercontrol, I modified the table of the cell values, the application can do to get the value of the modified ?
In the preview, there was a data table, I modified some of the value of the cell , in the C# code, I can get the latest value?
Thank you for your answer
Ask the usage of StiViewerControl
Hello,
Thank you.
You can use the following codelampson wrote:1.Before calling the Show method , i do not want to display any dialog boxes ,need to how to do it?
The dialog box that seems to be compiled
Code: Select all
StiReport report = new StiReport();
report.Load();
report.Render(false);
report.Show();
If we understand you correct then, please send the report with updated data with the stiviewercontrol once again.lampson wrote:3.In stiviewercontrol, I modified the table of the cell values, the application can do to get the value of the modified ?
In the preview, there was a data table, I modified some of the value of the cell , in the C# code, I can get the latest value?
Thank you.