![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
From: "john" <none (AT) none (DOT) com Subject: Display Parameter Results in Report Date: Sat, 6 Oct 2007 09:26:24 -0400 Conditions: Web Control: Report Viewer The Report.rdlc Dataset query has 2 Date Parameters @Start & @End. In the Report viewers ObjectDataSource: Configuration, I have them set them to 2 Textbox controls. Report works as expected. What I would like is to have those two Enter Dates Displayed in the Reports Header itself'. I have tried setting these parameters in the Report.rdlc Report Parameter Dialog but do not know how (I assume thru the Expression Builder) to Reference their Values to those Textboxes on the Report Viewers Form I have Textboxes in the Header that I Basically want to Display these Two Entered Dates so the printed(Exported) report Reveals the Reports Date Range Thanks for any info on how to do this John |
#3
| |||
| |||
|
|
Organization: Microsoft Date: Mon, 08 Oct 2007 06:40:51 GMT Subject: RE: Display Parameter Results in Report Hi John, Regarding on the question about mapping the ReportViewrer's LocalReport parameter to the DataSource's parameter, here are some of my understanding and suggestion: **As the documenet mentioend, for Local Report(RDLC ..), reportviewer does not provide parameter area by default. You will need to use your own controls(on the page) to accept the parameter values and assign it to report programmatically. Also, it also mentioned that report parameters can not be mapped to query parameters since they're used separately and have no relation to eachother. #Defining Report Parameters in a ReportViewer Report http://msdn2.microsoft.com/en-us/lib...85(VS.80).aspx #Using report parameters in local mode http://www.gotreportviewer.com/local...ers/index.html For your case that the parameters are actually of the datasource component, my suggestion here is that you do not need to care about report parameters. Just add the TextBoxes onto the page and use them as the parameter source for the report datasource(object datasource control). Also, since these TextBoxes are manually added, they're outside of the built-in reportviewer's toolbar area. I think you may consider set "ShowToolBar" property of the ReportViewr to "false" so that you can completely provide the toolbar interface yourself. e.g. You can add code to manually refresh the report .e.g ================= protected void Button1_Click(object sender, EventArgs e) { ReportViewer1.LocalReport.Refresh(); } ================= How do you think? Please feel free to let me know if you have any other ideas or questions here. Sincerely, Steven Cheng Microsoft MSDN Online Support Lead ================================================== Get notification to my posts through email? Please refer to http://msdn.microsoft.com/subscripti...ault.aspx#noti f ications. Note: The MSDN Managed Newsgroup support offering is for non-urgent issues where an initial response from the community or a Microsoft Support Engineer within 1 business day is acceptable. Please note that each follow up response may take approximately 2 business days as the support professional working with you may need further investigation to reach the most efficient resolution. The offering is not appropriate for situations that require urgent, real-time or phone-based interactions or complex project analysis and dump analysis issues. Issues of this nature are best handled working with a dedicated Microsoft Support Engineer by contacting Microsoft Customer Support Services (CSS) at http://msdn.microsoft.com/subscripti...t/default.aspx. ================================================== This posting is provided "AS IS" with no warranties, and confers no rights. -------------------- From: "john" <none (AT) none (DOT) com Subject: Display Parameter Results in Report Date: Sat, 6 Oct 2007 09:26:24 -0400 Conditions: Web Control: Report Viewer The Report.rdlc Dataset query has 2 Date Parameters @Start & @End. In the Report viewers ObjectDataSource: Configuration, I have them set them to 2 Textbox controls. Report works as expected. What I would like is to have those two Enter Dates Displayed in the Reports Header itself'. I have tried setting these parameters in the Report.rdlc Report Parameter Dialog but do not know how (I assume thru the Expression Builder) to Reference their Values to those Textboxes on the Report Viewers Form I have Textboxes in the Header that I Basically want to Display these Two Entered Dates so the printed(Exported) report Reveals the Reports Date Range Thanks for any info on how to do this John |
#4
| |||
| |||
|
|
Hi John, Have you got any further ideas on this issue or does the suggestion in my last reply help some? If there is anything else we can help, please feel free to post here. Sincerely, Steven Cheng Microsoft MSDN Online Support Lead This posting is provided "AS IS" with no warranties, and confers no rights. -------------------- Organization: Microsoft Date: Mon, 08 Oct 2007 06:40:51 GMT Subject: RE: Display Parameter Results in Report Hi John, Regarding on the question about mapping the ReportViewrer's LocalReport parameter to the DataSource's parameter, here are some of my understanding and suggestion: **As the documenet mentioend, for Local Report(RDLC ..), reportviewer does not provide parameter area by default. You will need to use your own controls(on the page) to accept the parameter values and assign it to report programmatically. Also, it also mentioned that report parameters can not be mapped to query parameters since they're used separately and have no relation to eachother. #Defining Report Parameters in a ReportViewer Report http://msdn2.microsoft.com/en-us/lib...85(VS.80).aspx #Using report parameters in local mode http://www.gotreportviewer.com/local...ers/index.html For your case that the parameters are actually of the datasource component, my suggestion here is that you do not need to care about report parameters. Just add the TextBoxes onto the page and use them as the parameter source for the report datasource(object datasource control). Also, since these TextBoxes are manually added, they're outside of the built-in reportviewer's toolbar area. I think you may consider set "ShowToolBar" property of the ReportViewr to "false" so that you can completely provide the toolbar interface yourself. e.g. You can add code to manually refresh the report .e.g ================= protected void Button1_Click(object sender, EventArgs e) { ReportViewer1.LocalReport.Refresh(); } ================= How do you think? Please feel free to let me know if you have any other ideas or questions here. Sincerely, Steven Cheng Microsoft MSDN Online Support Lead ================================================== Get notification to my posts through email? Please refer to http://msdn.microsoft.com/subscripti...ault.aspx#noti f ications. Note: The MSDN Managed Newsgroup support offering is for non-urgent issues where an initial response from the community or a Microsoft Support Engineer within 1 business day is acceptable. Please note that each follow up response may take approximately 2 business days as the support professional working with you may need further investigation to reach the most efficient resolution. The offering is not appropriate for situations that require urgent, real-time or phone-based interactions or complex project analysis and dump analysis issues. Issues of this nature are best handled working with a dedicated Microsoft Support Engineer by contacting Microsoft Customer Support Services (CSS) at http://msdn.microsoft.com/subscripti...t/default.aspx. ================================================== This posting is provided "AS IS" with no warranties, and confers no rights. -------------------- From: "john" <none (AT) none (DOT) com Subject: Display Parameter Results in Report Date: Sat, 6 Oct 2007 09:26:24 -0400 Conditions: Web Control: Report Viewer The Report.rdlc Dataset query has 2 Date Parameters @Start & @End. In the Report viewers ObjectDataSource: Configuration, I have them set them to 2 Textbox controls. Report works as expected. What I would like is to have those two Enter Dates Displayed in the Reports Header itself'. I have tried setting these parameters in the Report.rdlc Report Parameter Dialog but do not know how (I assume thru the Expression Builder) to Reference their Values to those Textboxes on the Report Viewers Form I have Textboxes in the Header that I Basically want to Display these Two Entered Dates so the printed(Exported) report Reveals the Reports Date Range Thanks for any info on how to do this John |
#5
| |||
| |||
|
|
From: "john" <none (AT) none (DOT) com References: <#DQBAyBCIHA.4476 (AT) TK2MSFTNGP06 (DOT) phx.gbl tLqH3YXCIHA.4516 (AT) TK2MSFTNGHUB02 (DOT) phx.gbl |
|
Subject: Re: Display Parameter Results in Report Date: Thu, 11 Oct 2007 02:50:21 -0400 Still Reviewing articles you had links for, will try it out ASAP. Thanks "Steven Cheng[MSFT]" <stcheng (AT) online (DOT) microsoft.com> wrote in message news:TxgMR5yCIHA.4200 (AT) TK2MSFTNGHUB02 (DOT) phx.gbl... Hi John, Have you got any further ideas on this issue or does the suggestion in my last reply help some? If there is anything else we can help, please feel free to post here. Sincerely, Steven Cheng Microsoft MSDN Online Support Lead This posting is provided "AS IS" with no warranties, and confers no rights. -------------------- Organization: Microsoft Date: Mon, 08 Oct 2007 06:40:51 GMT Subject: RE: Display Parameter Results in Report Hi John, Regarding on the question about mapping the ReportViewrer's LocalReport parameter to the DataSource's parameter, here are some of my understanding and suggestion: **As the documenet mentioend, for Local Report(RDLC ..), reportviewer does not provide parameter area by default. You will need to use your own controls(on the page) to accept the parameter values and assign it to report programmatically. Also, it also mentioned that report parameters can not be mapped to query parameters since they're used separately and have no relation to eachother. #Defining Report Parameters in a ReportViewer Report http://msdn2.microsoft.com/en-us/lib...85(VS.80).aspx #Using report parameters in local mode http://www.gotreportviewer.com/local...ers/index.html For your case that the parameters are actually of the datasource component, my suggestion here is that you do not need to care about report parameters. Just add the TextBoxes onto the page and use them as the parameter source for the report datasource(object datasource control). Also, since these TextBoxes are manually added, they're outside of the built-in reportviewer's toolbar area. I think you may consider set "ShowToolBar" property of the ReportViewr to "false" so that you can completely provide the toolbar interface yourself. e.g. You can add code to manually refresh the report .e.g ================= protected void Button1_Click(object sender, EventArgs e) { ReportViewer1.LocalReport.Refresh(); } ================= How do you think? Please feel free to let me know if you have any other ideas or questions here. Sincerely, Steven Cheng Microsoft MSDN Online Support Lead ================================================== Get notification to my posts through email? Please refer to http://msdn.microsoft.com/subscripti...efault.aspx#no ti f ications. Note: The MSDN Managed Newsgroup support offering is for non-urgent issues where an initial response from the community or a Microsoft Support Engineer within 1 business day is acceptable. Please note that each follow up response may take approximately 2 business days as the support professional working with you may need further investigation to reach the most efficient resolution. The offering is not appropriate for situations that require urgent, real-time or phone-based interactions or complex project analysis and dump analysis issues. Issues of this nature are best handled working with a dedicated Microsoft Support Engineer by contacting Microsoft Customer Support Services (CSS) at http://msdn.microsoft.com/subscripti...t/default.aspx. ================================================== This posting is provided "AS IS" with no warranties, and confers no rights. -------------------- From: "john" <none (AT) none (DOT) com Subject: Display Parameter Results in Report Date: Sat, 6 Oct 2007 09:26:24 -0400 Conditions: Web Control: Report Viewer The Report.rdlc Dataset query has 2 Date Parameters @Start & @End. In the Report viewers ObjectDataSource: Configuration, I have them set them to 2 Textbox controls. Report works as expected. What I would like is to have those two Enter Dates Displayed in the Reports Header itself'. I have tried setting these parameters in the Report.rdlc Report Parameter Dialog but do not know how (I assume thru the Expression Builder) to Reference their Values to those Textboxes on the Report Viewers Form I have Textboxes in the Header that I Basically want to Display these Two Entered Dates so the printed(Exported) report Reveals the Reports Date Range Thanks for any info on how to do this John |
#6
| |||
| |||
|
|
Conditions: Web Control: Report Viewer The Report.rdlc Dataset query has 2 Date Parameters @Start & @End. In the Report viewers ObjectDataSource: Configuration, I have them set them to 2 Textbox controls. Report works as expected. What I would like is to have those two Enter Dates Displayed in the Reports Header itself'. I have tried setting these parameters in the Report.rdlc Report Parameter Dialog but do not know how (I assume thru the Expression Builder) to Reference their Values to those Textboxes on the Report Viewers Form I have Textboxes in the Header that I Basically want to Display these Two Entered Dates so the printed(Exported) report Reveals the Reports Date Range Thanks for any info on how to do this John |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |