Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 2.0 > ASP.NET 2.0 Professional
|
ASP.NET 2.0 Professional If you are an experienced ASP.NET programmer, this is the forum for your 2.0 questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 30th, 2007, 01:44 AM
Authorized User
 
Join Date: Aug 2007
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default How to pass Parameter to Crystal Reports 10

hi iam a software programmer and facing a problem in Crystal Reports.
my doubt is, how to pass a value to parameter so that we can get that parameter in Crystal Reports 10. I want the code in C#

__________________
Software Programmer (ASP.NET),
Mumbai,
India.
 
Old August 30th, 2007, 06:01 AM
Authorized User
 
Join Date: Aug 2007
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Default

hi, this is shakti. i have successfully run this code. hope u will all find it helpful.

// here iam passing the text property of DropdownListContol as
// paramter in CrystalReport10.


reportDocument.SetDataSource(dt);
ParameterFieldDefinitions parameterFieldDefinitions = reportDocument.DataDefinition.ParameterFields;
ParameterFieldDefinition paramEventName = parameterFieldDefinitions[0];
paramEventName.CurrentValues.Clear();
ParameterDiscreteValue paramDiscreteValue = new ParameterDiscreteValue();
paramDiscreteValue.Value = drpEventName.SelectedItem.Text.ToString();
paramEventName.CurrentValues.Add(paramDiscreteValu e);
paramEventName.ApplyCurrentValues(paramEventName.C urrentValues);

CrystalReportViewer1.ReportSource = reportDocument;[/red][/red]





Similar Threads
Thread Thread Starter Forum Replies Last Post
Crystal Report Parameter pass from c# shriji.1111 Crystal Reports 4 June 14th, 2011 11:38 AM
how to pass datetime parameter to crystal reports hyder_master Crystal Reports 2 June 25th, 2010 01:18 AM
How to pass parameter to a crystal report using c# preetakrish BOOK: Professional Crystal Reports for VS.NET 16 November 19th, 2009 05:26 AM
pass multiple values to 1 parameter in Crystal 10 ckwizard77 Crystal Reports 0 July 26th, 2007 01:54 PM
Passing Parameter in Crystal report 10 aarunlal ASP.NET 2.0 Professional 2 April 25th, 2007 05:57 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.