How do I embed one report in the middle of another report?
I have a "Report1" derived from StiReport class . I stuff my data into this class and display using ShowWithWpf(). I use template1 to display the data
So, my requirement is that in a new design template (say template 2), I need to embed "template 1" in the middle of template 1.
How do I do this?
Regards
sri.
Embed one report in another
Re: Embed one report in another
Hello.
You could use a sub-report.
Thank you.
You could use a sub-report.
Thank you.
Re: Embed one report in another
I know what a sub report control is. Did you understand my question? If yes, could you let me know steps? How do I talk to you?
Last edited by sri on Tue Sep 18, 2012 6:18 am, edited 1 time in total.
Re: Embed one report in another
May be I should break it down for you.
I have a class
class stireport1 : StiReport
{
RegData("list",mylist);
}
The above is tied to designer template (Temp1.mrt) which displays the list. I display this report using ShowWithWPF().
I have another class
class stireport2: stireport
{
RegData("list2",mylist2);
}
This is tied to another template (Temp2.mrt) which displays this list
Now how can I include mylist in Temp2.mrt without inclduing controls for it in Temp2.mrt.
I have a class
class stireport1 : StiReport
{
RegData("list",mylist);
}
The above is tied to designer template (Temp1.mrt) which displays the list. I display this report using ShowWithWPF().
I have another class
class stireport2: stireport
{
RegData("list2",mylist2);
}
This is tied to another template (Temp2.mrt) which displays this list
Now how can I include mylist in Temp2.mrt without inclduing controls for it in Temp2.mrt.
Re: Embed one report in another
Hello.
Sorry, maybe we did not exactly understand your question. Could you explain your issue in more details?
Do you want to use data from first report in the second one?
Thank you.
Sorry, maybe we did not exactly understand your question. Could you explain your issue in more details?
Do you want to use data from first report in the second one?
Thank you.