public
partial
class
MyUsers: Telerik.Reporting.Report
{
}
Telerik.Reporting.Processing.PictureBox isActif = (Telerik.Reporting.Processing.PictureBox)section.ChildElements.Find(
"IsActif"
,
true
)[0];
Warning 21
'Telerik.Reporting.Processing.ProcessingElement.ChildElements'
is
obsolete:
'The Telerik.Reporting.Processing.ProcessingElement.ChildElements property is now obsolete. Use Telerik.Reporting.Processing.ElementTreeHelper.GetChildElements() method instead.'
C:\Code_Source\.REPORTING
report =
new
REPORTING.MyUsers();
Warning 26
'Telerik.Reporting.Report.implicit operator Telerik.Reporting.ReportSource(Telerik.Reporting.Report)'
is
obsolete:
'The implicit Report to ReportSource conversion is obsolete. Please create InstanceReportSource instead.'
C:\Code_Source\
var reportingModule1 = ReportingModule.CreateModule()
Report report =
new
Report3();
var objectDataSource =
new
Telerik.Reporting.ObjectDataSource();
objectDataSource.DataSource = reportingModule1;objectDataSource.DataMember =
"FindAllAssociations";
report.DataSource = objectDataSource;Hello,
I have tried your silverlight demo : "Invoice implemented with Master-Detail reports"
When I click the print button, nothing prints.
When I click the print button again, sometimes your app crashes...
My browser's installed SL version is :
Hello,
I am using C# and Asp.NET in the issue described below.
I have a Website which I access to using the following Url: http://localhost:8349.
This Website has the following folder at its root level: Reporting
Reporting folder hosts another folder: Reports
Finally, Reports also hosts a folder: Styles
The Styles folder contains one file called Style.xml. This file is a Stylesheet that I got by exporting the Style set on a previously existing report. Its build action is set to Content and its Copy to Output Directory is set to Do not copy.
Inside the Reports folder, I have a Telerik report called Report1.cs. It has a single textbox with its StyleName property set to a value from within the Style.xml. The report itself has one External StyleSheet that corresponds to the file in the Styles folder. The Kind is set to Relative.
At the root level of my Website I have an aspx page called MyReport.aspx. It contains a single report viewer. In the Page_Load method of the page, I have the following code:
Report1 report =
new
Report1();
ReportManagementViewer.Report = report;
this
.ExternalStyleSheets.Add(
new
Telerik.Reporting.Drawing.ExternalStyleSheet(
"Reporting\\Reports\\Styles\\Style.xml"
));
this
.ExternalStyleSheets.Add(
new
Telerik.Reporting.Drawing.ExternalStyleSheet(
"..\\Reporting\\Reports\\Styles\\Style.xml"
));
if
(!DesignMode)
{
this
.ExternalStyleSheets.Add(
new
Telerik.Reporting.Drawing.ExternalStyleSheet(
"..\\Reporting\\Reports\\Styles\\Style.xml"
));
}
else
{
this
.ExternalStyleSheets.Add(
new
Telerik.Reporting.Drawing.ExternalStyleSheet(
"Reporting\\Reports\\Styles\\Style.xml"
));
}