Re: Getting ReportViewer client parameters at runtime
Thanks for the help. I have it running very well right now. Here's what I had to do:1 - I get the current defaults from the ServerReport using the GetParameters method. This returns the default...
View ArticleRe: Getting ReportViewer client parameters at runtime
ERDollI cannot seem to do the following: 1) I have a report that uses the ASP.NET 2.0 Report Viewer against a RS2005 report that has parameters. Some have default values. One is a text box. Others...
View ArticleRe: Getting ReportViewer client parameters at runtime
okay - thanks. I completed the conversion and it seems to be working okay although I never could get the Type to work properly so just ended up handling it another way. If anyone would like the code,...
View ArticleRe: Getting ReportViewer client parameters at runtime
I wish I could be of more help but I had the same problem with the same method. I wasn't able to get anywhere with it. Perhaps someone out there with a bit more experience with the report viewer and...
View ArticleRe: Getting ReportViewer client parameters at runtime
Hmmm... Okay. Thanks for the reply. I'm hoping someone out there has it in C#. It appears that there are a couple of differences in the v9 version of ReportViewer that are giving me headaches. For...
View ArticleRe: Getting ReportViewer client parameters at runtime
I dind't get a c# version, I was refering to the posted code.
View ArticleRe: Getting ReportViewer client parameters at runtime
John, Can you send me the C# code you received? I'm dealing with almost the same issue and converting this from the VB that was posted is problematic.Thanks! Larry
View ArticleRe: Getting ReportViewer client parameters at runtime
This code looks like just the ticket, but my site is all in C#. I noticed that you have sent a C# version to one respondent. Could you please send it to me as well? The email address...
View ArticleRe: Getting ReportViewer client parameters at runtime
Hi! Thanks for the code! I have implemented it in my project however I am having a problem calling the method GetPropertyValue(..) I don't know what 'target' is. I understand the propertyName will...
View ArticleRe: Getting ReportViewer client parameters at runtime
ok. i got the C# code. but my requiremnt is to set the value for the parameter. how can i do this? thanks, srik
View ArticleRe: Getting ReportViewer client parameters at runtime
Hi, my problem is some thing similar. i have a database which stores data belonging to multiple clients. what i have to do is i have to apply the client ID while showing data in areport. i am using...
View ArticleRe: Getting ReportViewer client parameters at runtime
autofed,Your code saved my ass. It worked like a charm. Thank you.
View ArticleRe: Getting ReportViewer client parameters at runtime
The values of the parameters are stored in the view state of the parameter controls. Unfortunately, as you mentioned, you don't have direct access to those controls at run time. However, you do have...
View ArticleRe: Getting ReportViewer client parameters at runtime
I don't have access to those events since the controls are rendered automatically in the ReportViewer depending on what type of parameter it is. I'm trying to see if there is a property in the actual...
View ArticleRe: Getting ReportViewer client parameters at runtime
What about using TextChanged and SelectedIndex changed event. Make a function where you load your Reportviewer. Call that function everytime there is text changed or selected index changed.
View ArticleRe: Getting ReportViewer client parameters at runtime
bullpitExamine your parameters in isPostBack block.protected void Page_Load(object sender, EventArgs e) { if(isPostBack) { //EXAMINE } } I've been doing this but it doesn't work. If it were a DateTime...
View ArticleRe: Getting ReportViewer client parameters at runtime
Examine your parameters in isPostBack block.protected void Page_Load(object sender, EventArgs e) { if(isPostBack) { //EXAMINE } }
View ArticleRe: Getting ReportViewer client parameters at runtime
I am also trying to find how to get the parameters that the user has set when they hit the View Report button. But I think this is what happens when you do a GetParameters when you hit the View Report...
View ArticleRe: Getting ReportViewer client parameters at runtime
I am having a similar problem. Have you found a solution, specifically to number 1 in the second section of your message? CWaitz
View ArticleGetting ReportViewer client parameters at runtime
I cannot seem to do the following: 1) I have a report that uses the ASP.NET 2.0 Report Viewer against a RS2005 report that has parameters. Some have default values. One is a text box. Others are...
View Article