Link to home
Start Free TrialLog in
Avatar of soozh
soozhFlag for Sweden

asked on

Crystal Report parameters

hello,

I am programically passing in parameters to a Crystal Reports report.

I am parsing the ReportDocument.ParametersField object to get the parameters.

How can i tell the difference between the main report parameters, and any sub report parameters which get their values in the sub report links?

I only want to pass in values to the main report parameters.
Avatar of Mike McCracken
Mike McCracken

I generally use subreports that don't have their own parameters.

Are you sure you are getting subreport parameters in the parametersField list?
I have used that method for calling a report from an application but in the methods I have used, the subreport parameters were only available when I opened the subreport and worked with it.

mlmcc
Avatar of soozh

ASKER

yes we are... and the parameters were there, all of them, including the subreport parameters....
SOLUTION
Avatar of Mike McCracken
Mike McCracken

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of soozh

ASKER

We used the IsLinked property... thanks for the additional responses.