From: Bruce L-C [MVP] on
If you go to books online for SQL Server 2008 it has an section on
implementing a rendering extension. Have you tried that?

--
Bruce Loehle-Conger
MVP SQL Server Reporting Services

"jim" <jim(a)discussions.microsoft.com> wrote in message
news:99BF67C1-6DD4-45DB-8A0C-176FB4CEFE9E(a)microsoft.com...
> I must not be clear. I need to know the properties/methods available to
> the
> Microsoft.ReportingServices.OnDemandReportRendering.Tablix object. Does
> it
> only define the RDL?
> thanks again-
> -Jim
>
>
> "Bruce L-C [MVP]" wrote:
>
>> The report object model is defined in the documentation (or it should be)
>> links I gave you.
>>
>> --
>> Bruce Loehle-Conger
>> MVP SQL Server Reporting Services
>>
>> "jim" <jim(a)discussions.microsoft.com> wrote in message
>> news:5B59B4C1-A87C-432E-9DA4-A66F9D9F9A46(a)microsoft.com...
>> > Thanks for the quick response. I'm trying to update a report rendering
>> > extension originally written for 2003. In 2008 it uses
>> > Microsoft.ReportingServices.OnDemandReportRendering to define the new
>> > "Report
>> > Object Model". I can't seem to find any documentation on it.
>> >
>> > "Bruce L-C [MVP]" wrote:
>> >
>> >> Not sure what you mean about on demand report rendering. But there
>> >> report
>> >> definition language specification can be found here.
>> >>
>> >> http://msdn.microsoft.com/en-us/library/dd297486.aspx
>> >>
>> >> --
>> >> Bruce Loehle-Conger
>> >> MVP SQL Server Reporting Services
>> >>
>> >> "jim" <jim(a)discussions.microsoft.com> wrote in message
>> >> news:9E7D7271-4BAE-4966-8B2E-7B970F87416A(a)microsoft.com...
>> >> > Can anyone point me to the new Report Object Model documentation
>> >> > implemented
>> >> > in OnDemandReportRendering?
>> >> > thanks-
>> >> > -Jim
>> >> >
>> >> .
>> >>
>> .
>>
From: jim on
Tried that, the section on ReportRendering isn't there. The only mention
I've seen was a post about 8 months ago saying it would be done in two
months. Any other places I could look?
thanks-
-Jim



"Bruce L-C [MVP]" wrote:

> If you go to books online for SQL Server 2008 it has an section on
> implementing a rendering extension. Have you tried that?
>
> --
> Bruce Loehle-Conger
> MVP SQL Server Reporting Services
>

From: Bruce L-C [MVP] on
Just perusing the books online I have (July 2009) it has a variety of
sections on the interfaces you have to implement if you are doing a
rendering extension. I would think that you need to also understand the
object model of the reports which you will be implementing which is part of
the RDL specification.

So this is not what you are looking for?
http://msdn.microsoft.com/en-us/library/ms154018.aspx


--
Bruce Loehle-Conger
MVP SQL Server Reporting Services

"jim" <jim(a)discussions.microsoft.com> wrote in message
news:D142CA4A-2363-4E93-9049-7016F10EDAD6(a)microsoft.com...
> Tried that, the section on ReportRendering isn't there. The only mention
> I've seen was a post about 8 months ago saying it would be done in two
> months. Any other places I could look?
> thanks-
> -Jim
>
>
>
> "Bruce L-C [MVP]" wrote:
>
>> If you go to books online for SQL Server 2008 it has an section on
>> implementing a rendering extension. Have you tried that?
>>
>> --
>> Bruce Loehle-Conger
>> MVP SQL Server Reporting Services
>>
>
From: jim on
It's close. But notice how it says:
"The Render method contains arguments that represent the following objects:
* The report itself that you want to render. This object contains
properties, data, and layout information for the report. The report is the
root of the report object model tree."

I need the documentation on that "report" object. I can't find out what its
"properties, data and layout information" are.


"Bruce L-C [MVP]" wrote:

> Just perusing the books online I have (July 2009) it has a variety of
> sections on the interfaces you have to implement if you are doing a
> rendering extension. I would think that you need to also understand the
> object model of the reports which you will be implementing which is part of
> the RDL specification.
>
> So this is not what you are looking for?
> http://msdn.microsoft.com/en-us/library/ms154018.aspx
>
>
> --
> Bruce Loehle-Conger
> MVP SQL Server Reporting Services
>
> "jim" <jim(a)discussions.microsoft.com> wrote in message
> news:D142CA4A-2363-4E93-9049-7016F10EDAD6(a)microsoft.com...
> > Tried that, the section on ReportRendering isn't there. The only mention
> > I've seen was a post about 8 months ago saying it would be done in two
> > months. Any other places I could look?
> > thanks-
> > -Jim
> >
> >
> >
> > "Bruce L-C [MVP]" wrote:
> >
> >> If you go to books online for SQL Server 2008 it has an section on
> >> implementing a rendering extension. Have you tried that?
> >>
> >> --
> >> Bruce Loehle-Conger
> >> MVP SQL Server Reporting Services
> >>
> >
> .
>
From: Bruce L-C [MVP] on
I am not familiar with how you write a renderer but I would think you walk
the xml object model in the RDL specification. You have a renderer that you
are updating for 2008.

Why are you writing your own rendered. This is a very non-trivial activity
and if there is any other way to solve the problem that should be done
first.

--
Bruce Loehle-Conger
MVP SQL Server Reporting Services

"jim" <jim(a)discussions.microsoft.com> wrote in message
news:778D83F6-EEC5-4C02-B5AF-2492A2D4E580(a)microsoft.com...
> It's close. But notice how it says:
> "The Render method contains arguments that represent the following
> objects:
> * The report itself that you want to render. This object contains
> properties, data, and layout information for the report. The report is the
> root of the report object model tree."
>
> I need the documentation on that "report" object. I can't find out what
> its
> "properties, data and layout information" are.
>
>
> "Bruce L-C [MVP]" wrote:
>
>> Just perusing the books online I have (July 2009) it has a variety of
>> sections on the interfaces you have to implement if you are doing a
>> rendering extension. I would think that you need to also understand the
>> object model of the reports which you will be implementing which is part
>> of
>> the RDL specification.
>>
>> So this is not what you are looking for?
>> http://msdn.microsoft.com/en-us/library/ms154018.aspx
>>
>>
>> --
>> Bruce Loehle-Conger
>> MVP SQL Server Reporting Services
>>
>> "jim" <jim(a)discussions.microsoft.com> wrote in message
>> news:D142CA4A-2363-4E93-9049-7016F10EDAD6(a)microsoft.com...
>> > Tried that, the section on ReportRendering isn't there. The only
>> > mention
>> > I've seen was a post about 8 months ago saying it would be done in two
>> > months. Any other places I could look?
>> > thanks-
>> > -Jim
>> >
>> >
>> >
>> > "Bruce L-C [MVP]" wrote:
>> >
>> >> If you go to books online for SQL Server 2008 it has an section on
>> >> implementing a rendering extension. Have you tried that?
>> >>
>> >> --
>> >> Bruce Loehle-Conger
>> >> MVP SQL Server Reporting Services
>> >>
>> >
>> .
>>
First  |  Prev  |  Next  |  Last
Pages: 1 2 3
Prev: Page SPlit
Next: Strange paging problem - please help