I have Crystal Reports that takes 2 parameters. One of them is automatically installed by the C # application, which launches the report, and the other is set by the user. I would like to make it so that when the user updates the report, only the parameter entered by the user is requested.
I know the ReuseParameterValuesOnRefresh property, but this makes ALL the parameters reused. I also tried adding the refreshreports method, but this does not work. When I look at the definition of the Refresh () method, all I get is an abstract class with undefined methods, so I'm not sure where to look.
Has anyone dealt with such a problem before?
source
share