<? xml version="1.0" encoding="utf-8" ?>
<root>
<para title="<p style='font-family:Geneva,Arial,Helvetica,sans-serif; font-size:12px; color:#666666; line-height:19px;'> Normal </p>" tag="< p >" />
<para title="<h1 style='font-family:Geneva,Arial,Helvetica,sans-serif; font-size:35px; color: #00adec;'> Heading1 </h1>" tag="< h1 >" />
<para title="<h2 style='font-family:Geneva,Arial,Helvetica,sans-serif; font-size:18px; color: #FF6699; line-height:22px;'> Heading2 </h2>" tag="< h2 >" />
<para title="<h3 style='font-family:Geneva,Arial,Helvetica,sans-serif; font-size:25px; color:#00adec;'> Heading3 </h3>" tag="< h3 >" />
<para title="<h4 style='font-family:Geneva,Arial,Helvetica,sans-serif; font-size:18px; font-weight:100; color:#999999; line-height:22px;'> Heading4 </h4>" tag="< h4 >" />
</root>

| public partial class repRegisterConfirmMaster : Telerik.Reporting.Report |
| { |
| private int iBenutzerId = -1; |
| public int PARAMETER_BenutzerId |
| { |
| get { return iBenutzerId; } |
| set { iBenutzerId = value; } |
| } |
| private int iOrderId = -1; |
| public int PARAMETER_OrderId |
| { |
| get { return iOrderId; } |
| set { iOrderId = value; } |
| } |
| private sbyte iSpracheId = -1; |
| public sbyte PARAMETER_SpracheId |
| { |
| get { return iSpracheId; } |
| set { iSpracheId = value; } |
| } |
| public repRegisterConfirmMaster() |
| { |
| InitializeComponent(); |
| } |
| public void loadReportData() |
| { |
| this.dsBenutzerKundeAdresseKontaktTableAdapter1.Fill(this.dsBenutzerKundeAdresseKontakt.dsBenutzerKundeAdresseKontaktTable, iBenutzerId); |
| } |
| public partial class subRegisterConfirmModul : Telerik.Reporting.Report |
| { |
| private int iOrderId = -1; |
| public int PARAMETER_OrderId |
| { |
| get { return iOrderId; } |
| set { iOrderId = value; } |
| } |
| private sbyte iSpracheId = -1; |
| public sbyte PARAMETER_SpracheId |
| { |
| get { return iSpracheId; } |
| set { iSpracheId = value; } |
| } |
| public subRegisterConfirmModul() |
| { |
| InitializeComponent(); |
| } |
| public void loadReportData() |
| { |
| this.dsKundenModulByOrderIdTableAdapter1.Fill(this.dsKundenModulByOrderId.dsKundenModulByOrderIdTable, (byte) iSpracheId, iOrderId); |
| } |
| ... ReportViewer1.Report = new repRegisterConfirmMaster(); |
| (ReportViewer1.Report as repRegisterConfirmMaster).PARAMETER_BenutzerId = 77; |
| (ReportViewer1.Report as repRegisterConfirmMaster).PARAMETER_OrderId = 94; |
| (ReportViewer1.Report as repRegisterConfirmMaster).PARAMETER_SpracheId = S.SpracheId; |
| (ReportViewer1.Report as repRegisterConfirmMaster).loadReportData(); |
3. OS : xp pro service pack 3
Tools/product : Telerik reporting version 2009.2 701 (Jul 1, 2009)
Web Viewer version : 3.0.9.430
i would to know how to call user defined function from mssql to be displayed in a report. Pls provide me an example/documentation regarding this issue. One more thing, im using automatic ui parameterized feature to filter data ( which prompt user input ), i want to use more than one parameter to filter data. When i just tried to add more parameter it failed to work but working well with one parameter. How to address this problem? Since im working with web application, when i want run the project thru localhost, the page is empty (no data displayed) but i could preview the report. How to solve this portion.
Thank You
Your guidance is much appreciated
Regards
Pat