how to pass string values(string list) to parameter to show multiple values in crystal report2019 Community Moderator ElectionParameter Problem with Crystal Reports ExportUnable to pass a int Parameter to a Crystal Reportc# passing parameters to crystal reports error “Missing Parameter Values”How to use list as datasource for a wpf-crystal report applicationCrystal Reports: multiple parameter values in record selection filterPassing Textbox value to Crystal Report textboxCrystal reports application expects parameters to be provided manuallyCrystal Reports 2011 Multiple Selections not displayingMultiple Parameters in Crystal Report with delimeterPass parameter value from mvc controller to crystal reports
Python if-else code style for reduced code for rounding floats
Planetary tidal locking causing asymetrical water distribution
Is it normal that my co-workers at a fitness company criticize my food choices?
Professor being mistaken for a grad student
Brexit - No Deal Rejection
Is there a place to find the pricing for things not mentioned in the PHB? (non-magical)
Why one should not leave fingerprints on bulbs and plugs?
How well should I expect Adam to work?
How to write cleanly even if my character uses expletive language?
Have the tides ever turned twice on any open problem?
Converting a variable frequency to TTL HIGH and LOW levels, based on a fixed (possible non-fixed?) frequency
Why does a Star of David appear at a rally with Francisco Franco?
Do I need to be arrogant to get ahead?
Bach's Toccata and Fugue in D minor breaks the "no parallel octaves" rule?
How could an airship be repaired midflight?
How do I change two letters closest to a string and one letter immediately after a string using Notepad++?
Simplify an interface for flexibly applying rules to periods of time
Do the common programs (for example: "ls", "cat") in Linux and BSD come from the same source code?
Tikz picture of two mathematical functions
Why does overlay work only on the first tcolorbox?
Shortcut for setting origin to vertex
Violin - Can double stops be played when the strings are not next to each other?
How to make healing in an exploration game interesting
Describing a chess game in a novel
how to pass string values(string list) to parameter to show multiple values in crystal report
2019 Community Moderator ElectionParameter Problem with Crystal Reports ExportUnable to pass a int Parameter to a Crystal Reportc# passing parameters to crystal reports error “Missing Parameter Values”How to use list as datasource for a wpf-crystal report applicationCrystal Reports: multiple parameter values in record selection filterPassing Textbox value to Crystal Report textboxCrystal reports application expects parameters to be provided manuallyCrystal Reports 2011 Multiple Selections not displayingMultiple Parameters in Crystal Report with delimeterPass parameter value from mvc controller to crystal reports
i am working on a wpf app where i want to pass a string list(multiple string values) to crystal report single parameter to show multiple values in section3 of crystal reports.I set Allow multiple values to True for parameter.
I googled it but cant find solution.
I have tried this but it gives an exception "System.ArgumentException: 'Invalid object type.'"
crystalReport obj2 = new crystalReport();
obj2.Load("@crystalReport.rpt");
foreach (string x in list)
obj2.ParameterFields["stringParameter"].CurrentValues.Add(x); //exception
I also tried this. it gives an exception "System.ArgumentException: 'Value does not fall within the expected range.'"
crystalReport obj2 = new crystalReport();
obj2.Load("@crystalReport.rpt");
obj2.SetParameterValue("stringParameter", list); // exception
c# crystal-reports
add a comment |
i am working on a wpf app where i want to pass a string list(multiple string values) to crystal report single parameter to show multiple values in section3 of crystal reports.I set Allow multiple values to True for parameter.
I googled it but cant find solution.
I have tried this but it gives an exception "System.ArgumentException: 'Invalid object type.'"
crystalReport obj2 = new crystalReport();
obj2.Load("@crystalReport.rpt");
foreach (string x in list)
obj2.ParameterFields["stringParameter"].CurrentValues.Add(x); //exception
I also tried this. it gives an exception "System.ArgumentException: 'Value does not fall within the expected range.'"
crystalReport obj2 = new crystalReport();
obj2.Load("@crystalReport.rpt");
obj2.SetParameterValue("stringParameter", list); // exception
c# crystal-reports
add a comment |
i am working on a wpf app where i want to pass a string list(multiple string values) to crystal report single parameter to show multiple values in section3 of crystal reports.I set Allow multiple values to True for parameter.
I googled it but cant find solution.
I have tried this but it gives an exception "System.ArgumentException: 'Invalid object type.'"
crystalReport obj2 = new crystalReport();
obj2.Load("@crystalReport.rpt");
foreach (string x in list)
obj2.ParameterFields["stringParameter"].CurrentValues.Add(x); //exception
I also tried this. it gives an exception "System.ArgumentException: 'Value does not fall within the expected range.'"
crystalReport obj2 = new crystalReport();
obj2.Load("@crystalReport.rpt");
obj2.SetParameterValue("stringParameter", list); // exception
c# crystal-reports
i am working on a wpf app where i want to pass a string list(multiple string values) to crystal report single parameter to show multiple values in section3 of crystal reports.I set Allow multiple values to True for parameter.
I googled it but cant find solution.
I have tried this but it gives an exception "System.ArgumentException: 'Invalid object type.'"
crystalReport obj2 = new crystalReport();
obj2.Load("@crystalReport.rpt");
foreach (string x in list)
obj2.ParameterFields["stringParameter"].CurrentValues.Add(x); //exception
I also tried this. it gives an exception "System.ArgumentException: 'Value does not fall within the expected range.'"
crystalReport obj2 = new crystalReport();
obj2.Load("@crystalReport.rpt");
obj2.SetParameterValue("stringParameter", list); // exception
c# crystal-reports
c# crystal-reports
edited Mar 7 at 16:44
Haris Aijaz
asked Mar 7 at 15:19
Haris AijazHaris Aijaz
63
63
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55047208%2fhow-to-pass-string-valuesstring-list-to-parameter-to-show-multiple-values-in-c%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55047208%2fhow-to-pass-string-valuesstring-list-to-parameter-to-show-multiple-values-in-c%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown