or
Hi,
I just tried to compile my reporting application (strictly speaking a wrapper) using the latest nightly build (4.2.11.204).
Unfortunately I ran into an "Object reference not set to an instance of an object" exception. The exception is thrown by Telerik.Reporting.dll during report generation, so I am not able to say what exactly raises it.
Do you have any idea what’s going wrong or could you tell me if there are any breaking changes in the interface of Telerik Reporting?
I just want to avoid running into this issues when using the upcoming (production ready) Q1 2011 release.
BTW: The project templates for Telerik Reports are vanished from VS 2010 when installing v.4.2.11.204.
Best Regards
<Telerik.Reporting> <Extensions> <Render> <Extension name="PDF" visible="true"> <Parameters> <Parameter name="FontEmbedding" value="Subset" /> </Parameters> </Extension> <Extension name="CSV" visible="false" /> <!--<Extension name="IMAGE" visible="false"> </Extension>--> <Extension name="RTF" visible="false"> </Extension> <Extension name="MHTML" visible="false"> </Extension> <Extension name="XLS" visible="false"> </Extension> <Extension name="XPS" visible="false"> </Extension> </Render> </Extensions> </Telerik.Reporting>public interface ITopInterface { string A { get; }}public interface IBottomInterface: ITopInterface { string B { get; } bool C { get; }}public class BaseClass : ITopInterface{ public string A { get { return "test"; } }}public class newobject : BaseClass, IBottomInterface{ public string B { get { return "test"; } } public bool C { get { return true; } }}