F
frien
I list parameters using a web service method GetReportParameters()...
i basically am using this method arond 8 times in my programme which is
making my programme work very very slow....is there any way .... i
could store the values once and use the same repitively.
the problem is based on the report name i list the parameters ...it
goes something like this
for(index = 0; index <listBoxReports.Items.Count)
{
parameters =_rs.getReportParameters(listBoxReports.Items[index].path,
null,null,true,null,null)
foreach(ReportParameter parameter in parameters)
{
------
-----
}
so i need a structure to store the name of the report and its
corresponding parameters...one report by report
Plz suggest me how do i go about.
Thanks a lost in advance
i basically am using this method arond 8 times in my programme which is
making my programme work very very slow....is there any way .... i
could store the values once and use the same repitively.
the problem is based on the report name i list the parameters ...it
goes something like this
for(index = 0; index <listBoxReports.Items.Count)
{
parameters =_rs.getReportParameters(listBoxReports.Items[index].path,
null,null,true,null,null)
foreach(ReportParameter parameter in parameters)
{
------
-----
}
so i need a structure to store the name of the report and its
corresponding parameters...one report by report
Plz suggest me how do i go about.
Thanks a lost in advance