Friday, March 30, 2012

Mr,Teo Lachev - Want your help

i got your code i think its in visual studio 2005, i am
using 2003. so can u help me further,
u were talking about customize dataset extension but i cant get how to use
this so plz plz help me its so urgentYou may find this sample useful.
http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=B8468707-56EF-4864-AC51-D83FC3273FE5
--
HTH,
---
Teo Lachev, MVP, MCSD, MCT
"Microsoft Reporting Services in Action"
"Applied Microsoft Analysis Services 2005"
Home page and blog: http://www.prologika.com/
---
"Lovenish" <Lovenish@.discussions.microsoft.com> wrote in message
news:2A2A6B0B-E636-4F2A-98B6-B6FE33F6F8A5@.microsoft.com...
>i got your code i think its in visual studio 2005, i am
> using 2003. so can u help me further,
> u were talking about customize dataset extension but i cant get how to use
> this so plz plz help me its so urgent
>|||thx Sir,
i have read it. but here we are using only one xml file to read. but
as you know i am developing web application there may be several hits to
that, then how can i manage it through using one file name,|||Can you describe your requirements in more details? I am at lost about what
exactly you are trying to accomplish?
--
HTH,
---
Teo Lachev, MVP, MCSD, MCT
"Microsoft Reporting Services in Action"
"Applied Microsoft Analysis Services 2005"
Home page and blog: http://www.prologika.com/
---
"Lovenish" <Lovenish@.discussions.microsoft.com> wrote in message
news:417DA551-51C9-45A7-8EA7-FE1AA5D01A42@.microsoft.com...
> thx Sir,
> i have read it. but here we are using only one xml file to read.
> but
> as you know i am developing web application there may be several hits to
> that, then how can i manage it through using one file name,
>|||Thx Teo for replying,
i am making report for Tardus , a financial company. as per their
requirement they want some calculators with reports.
ex. in retirement report i have to show how long user's fund will
last. i have to show each year's amount. currently i using session id and do
the entry in database and for displaying report i pass session id as
parameter.
i fill this way very tedious. can you say how can i assign customize
ado.net dataset to report as we can do in crystal report
"Teo Lachev [MVP]" wrote:
> Can you describe your requirements in more details? I am at lost about what
> exactly you are trying to accomplish?
> --
> HTH,
> ---
> Teo Lachev, MVP, MCSD, MCT
> "Microsoft Reporting Services in Action"
> "Applied Microsoft Analysis Services 2005"
> Home page and blog: http://www.prologika.com/
> ---
> "Lovenish" <Lovenish@.discussions.microsoft.com> wrote in message
> news:417DA551-51C9-45A7-8EA7-FE1AA5D01A42@.microsoft.com...
> > thx Sir,
> >
> > i have read it. but here we are using only one xml file to read.
> > but
> > as you know i am developing web application there may be several hits to
> > that, then how can i manage it through using one file name,
> >
>
>|||NP. I've already did by pointing you out to a custom dataset extension that
gets the serialized dataset from a report parameter and deserialize it back
to an ADO.NET dataset. Can you explain why it doesn't meet your
requirements?
--
HTH,
---
Teo Lachev, MVP, MCSD, MCT
"Microsoft Reporting Services in Action"
"Applied Microsoft Analysis Services 2005"
Home page and blog: http://www.prologika.com/
---
"Lovenish" <Lovenish@.discussions.microsoft.com> wrote in message
news:805B028A-46F0-48FC-953E-0AFB517DE5A0@.microsoft.com...
> Thx Teo for replying,
> i am making report for Tardus , a financial company. as per their
> requirement they want some calculators with reports.
> ex. in retirement report i have to show how long user's fund will
> last. i have to show each year's amount. currently i using session id and
> do
> the entry in database and for displaying report i pass session id as
> parameter.
> i fill this way very tedious. can you say how can i assign customize
> ado.net dataset to report as we can do in crystal report
> "Teo Lachev [MVP]" wrote:
>> Can you describe your requirements in more details? I am at lost about
>> what
>> exactly you are trying to accomplish?
>> --
>> HTH,
>> ---
>> Teo Lachev, MVP, MCSD, MCT
>> "Microsoft Reporting Services in Action"
>> "Applied Microsoft Analysis Services 2005"
>> Home page and blog: http://www.prologika.com/
>> ---
>> "Lovenish" <Lovenish@.discussions.microsoft.com> wrote in message
>> news:417DA551-51C9-45A7-8EA7-FE1AA5D01A42@.microsoft.com...
>> > thx Sir,
>> >
>> > i have read it. but here we are using only one xml file to read.
>> > but
>> > as you know i am developing web application there may be several hits
>> > to
>> > that, then how can i manage it through using one file name,
>> >
>>|||Thx Teo,
the code was awesome but i have a little problem.
we are passing xml file path as a parameter , the problem is the
site may have several hits at a time then i have to make a lots of xml file
and again i have to find a way to delete it so how can i come out this|||How are you getting the application dataset? And more importantly, why don't
you pass the serialized-to-XML datasets instead of the file path?
--
HTH,
---
Teo Lachev, MVP, MCSD, MCT
"Microsoft Reporting Services in Action"
"Applied Microsoft Analysis Services 2005"
Home page and blog: http://www.prologika.com/
---
"Lovenish" <Lovenish@.discussions.microsoft.com> wrote in message
news:AC3AB17D-31E8-4854-AE76-CD3C9EE0D010@.microsoft.com...
> Thx Teo,
> the code was awesome but i have a little problem.
> we are passing xml file path as a parameter , the problem is the
> site may have several hits at a time then i have to make a lots of xml
> file
> and again i have to find a way to delete it so how can i come out this
>|||Thx Teo,
actually i get the record of user that was entered by him,
ex. for retirement fund he has entered his initial balance, rate of interest
etc.
then i generate data for age, his balance, interest he gets etc each year .
i am displaying report in ascx control. i disable parameter field and
toolbar of report.
so|||This looks like a perfect scenario for using the Visual Studio 2005 ASP.NET
Report Viewer control in a disconnected mode because it will save you the
effort for creating and debugging a custom dataset extension. But you are
using VS.NET 2003 :-) This is what I would do in your case:
1. Use my custom dataset extension.
2. Generate an ADO.NET dataset
3. Serialize the dataset to XML and pass it as a hidden parameter in my
report via SOAP (Render SOAP API).
So, no XML files that linger around.
--
HTH,
---
Teo Lachev, MVP, MCSD, MCT
"Microsoft Reporting Services in Action"
"Applied Microsoft Analysis Services 2005"
Home page and blog: http://www.prologika.com/
---
"Lovenish" <Lovenish@.discussions.microsoft.com> wrote in message
news:A47889CE-A31F-4E88-8E62-80F5257B887D@.microsoft.com...
> Thx Teo,
> actually i get the record of user that was entered by him,
> ex. for retirement fund he has entered his initial balance, rate of
> interest
> etc.
> then i generate data for age, his balance, interest he gets etc each year
> .
> i am displaying report in ascx control. i disable parameter field and
> toolbar of report.
> so
>|||Thx Teo,
As i am busy with some documentation, i will do your suggestion
tomorrow, as soon i get it done or get some problem i will mail in
discussion, thx for your co- operation.

No comments:

Post a Comment