Wrox Programmer Forums
Go Back   Wrox Programmer Forums > .NET > Other .NET > Crystal Reports
|
Crystal Reports General discussion about Crystal Reports. For discussions specific to the book Professional Crystal Reports for VS.NET, please see the book discussion forum for that book.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Crystal Reports 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 November 21st, 2007, 05:08 AM
Registered User
 
Join Date: Oct 2007
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to hyder_master Send a message via Yahoo to hyder_master
Default how to pass datetime parameter to crystal reports

I m using crystal reports in .net2.0 I want to pass datetime parameter to crystal report I m using stored procedure
in SQL server2005 I m using the code in C# to run the report as

I have to deploy the project on client mechine and therefore

included
using CrystalDecisions.Shared;
using CrystalDecisions.CrystalReports.Engine;


on report launch event

i wrote

================================================== ===============
ReportViewer vr = new ReportViewer()
 CrystalDecisions.Shared.TableLogOnInfo tliCurrent;
            ReportDocument rpt = new ReportDocument();
            try
            {

                rpt.Load(@"..\..\DailyActivityReport.rpt");
                foreach (CrystalDecisions.CrystalReports.Engine.Table tbCurrent in rpt.Database.Tables)
                {
                    tliCurrent = tbCurrent.LogOnInfo;
                    tliCurrent.ConnectionInfo.ServerName = "FROM app.config";
                    tliCurrent.ConnectionInfo.UserID = "FROM app.config";
                    tliCurrent.ConnectionInfo.Password = "FROM app.config";
                    tliCurrent.ConnectionInfo.DatabaseName = "FROM app.config";
                    tbCurrent.ApplyLogOnInfo(tliCurrent);

                }

               rpt.SetParameterValue("@todate", dtptodate.Value.ToString());
               rpt.SetParameterValue("@AccountID", txtuseraccountcode.Text);
                vr.crystalReportViewer1.ReportSource = rpt;
                vr.Show();
================================================== ================

report logins but NO VALUE OF parameter IS passed
how DO I DO it

hyder_master

hyder_master
 
Old September 22nd, 2008, 06:43 AM
hu_yang
Guest
 
Posts: n/a
Default

check the following link , date parameters to crystal reports

http://vb.net-informations.com/cryst...meter_date.htm

bolt


 
Old June 25th, 2010, 01:18 AM
Registered User
 
Join Date: Jun 2010
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

This link should help

http://jedsflipworld.xp3.biz/program...ystal-reports/





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 parameter to a crystal report using c# preetakrish BOOK: Professional Crystal Reports for VS.NET 16 November 19th, 2009 05:26 AM
pass parameter in crystal report srivigdev C# 3 April 14th, 2008 12:11 PM
How to pass Parameter to Crystal Reports 10 shakti_2505270 ASP.NET 2.0 Professional 1 August 30th, 2007 06:01 AM
Pass null value to Crystal parameter through .net sachin.bashetti Crystal Reports 0 November 28th, 2006 10:23 AM





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