473,387 Members | 1,619 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Crystal Report Unbound Fields

Hello,

I am trying to build a Crystal report VisualStudio.NET for an ASP.NET
application. I would like to build a report that doesn't connect to
any particular database at design time because I am planning to pass a
dataset to the report at runtime. From what I have read, it sounds
like unbound fields might be the answer. However, I am having trouble
figuring out how to bind these unbound fields to my dataset at
runtime.

Any help would be greatly appreciated! thanks, --Rick

//Here is the code I have so far...
ReportDocument crReportDocument = new ReportDocument();

//Grab the dataset from session
DataSet ds = (DataSet)Session["CRDataset"];
DataTable dt = ds.Tables["MY_TABLE"];

//load the report from disk
crReportDocument.Load(@"C:\Inetpub\wwwroot\MyApp\R eports\MySummary.rpt");
crReportDocument.SetDataSource(dt);

//*****************************
// TODO: I have an unbound field named "UnboundString1"
// I need to assign a column from the dataset to that field.
// Is that possible on an ASP.NET application
//*****************************

//set the options for saving the exported file to disk
DiskFileDestinationOptions dfdOptions = new
DiskFileDestinationOptions();
dfdOptions.DiskFileName = strPathFname;

//set the exporting information
ExportOptions crExportOptions = new ExportOptions();
crExportOptions = crReportDocument.ExportOptions;
crExportOptions.DestinationOptions = dfdOptions;
crExportOptions.ExportDestinationType =
ExportDestinationType.DiskFile;
crExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat;

//Export the report and write the file to the client browser
crReportDocument.Export();
Jul 21 '05 #1
4 14215
There's getting to be quite a few Crystal questions in these groups. Does
anyone know how we can get MS to add a
microsoft.public.dotnet.crystalreports group?

Sorry for not being able to help with your question. <g>

Scott
I am trying to build a Crystal report VisualStudio.NET for an ASP.NET

Jul 21 '05 #2
UPDATE: I emailed crystal about this subject and here is there response:

Hello Rick,

First I would like to thank you for using Answer By Emails (ABE) service.

Unfortunately, unbound field is not supported in Crystal Reports for
VS.NET.

For information on using Crystal Reports for Visual Studio .NET with
ADO.NET, go to 'http://support.crystaldecisions.com/docs' and search for:
'crnet_adonet.pdf'

For a sample application demonstrating passing an ADO.NET dataset to a
report, go to http://support.crystaldecisions.com/download and search for:
Vbnet_win_adodotnet.exe
ri*******@alliantenergy.com (Rick Thiel) wrote in message news:<39**************************@posting.google. com>...
Hello,

I am trying to build a Crystal report VisualStudio.NET for an ASP.NET
application. I would like to build a report that doesn't connect to
any particular database at design time because I am planning to pass a
dataset to the report at runtime. From what I have read, it sounds
like unbound fields might be the answer. However, I am having trouble
figuring out how to bind these unbound fields to my dataset at
runtime.

Any help would be greatly appreciated! thanks, --Rick

//Here is the code I have so far...
ReportDocument crReportDocument = new ReportDocument();

//Grab the dataset from session
DataSet ds = (DataSet)Session["CRDataset"];
DataTable dt = ds.Tables["MY_TABLE"];

//load the report from disk
crReportDocument.Load(@"C:\Inetpub\wwwroot\MyApp\R eports\MySummary.rpt");
crReportDocument.SetDataSource(dt);

//*****************************
// TODO: I have an unbound field named "UnboundString1"
// I need to assign a column from the dataset to that field.
// Is that possible on an ASP.NET application
//*****************************

//set the options for saving the exported file to disk
DiskFileDestinationOptions dfdOptions = new
DiskFileDestinationOptions();
dfdOptions.DiskFileName = strPathFname;

//set the exporting information
ExportOptions crExportOptions = new ExportOptions();
crExportOptions = crReportDocument.ExportOptions;
crExportOptions.DestinationOptions = dfdOptions;
crExportOptions.ExportDestinationType =
ExportDestinationType.DiskFile;
crExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat;

//Export the report and write the file to the client browser
crReportDocument.Export();

Jul 21 '05 #3
Hello Rich,

Thanks for posting in the group and sharing the information here. I believe
it could help Crystal Report developers much here.

For the question, please try using the SetDataSource method to do it at
runtime.
Eg.:
myConn = new SqlConnection("Server=.;Database=Northwind;Integra ted
Security=true;");
SqlDataAdapter adapter = new SqlDataAdapter("select EmployeeID, LastName,
Firstname, HireDate from employees",myConn);
adapter.Fill(myNorthwindDS,"Employees");
myNorthwindReport.SetDataSource(myNorthwindDS);
crystalReportViewer1.ReportSource = myNorthwindReport;

Hope that helps.

Best regards,
Yanhong Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
!From: ri*******@alliantenergy.com (Rick Thiel)
!Newsgroups: microsoft.public.dotnet.general
!Subject: Re: Crystal Report Unbound Fields
!Date: 15 Sep 2003 06:13:28 -0700
!Organization: http://groups.google.com/
!Lines: 63
!Message-ID: <39**************************@posting.google.com >
!References: <39**************************@posting.google.com >
!NNTP-Posting-Host: 198.7.47.200
!Content-Type: text/plain; charset=ISO-8859-1
!Content-Transfer-Encoding: 8bit
!X-Trace: posting.google.com 1063631609 5918 127.0.0.1 (15 Sep 2003
13:13:29 GMT)
!X-Complaints-To: gr**********@google.com
!NNTP-Posting-Date: 15 Sep 2003 13:13:29 GMT
!Path:
cpmsftngxa07.phx.gbl!cpmsftngxa10.phx.gbl!TK2MSFTN GXA05.phx.gbl!TK2MSFTNGP08
..phx.gbl!newsfeed00.sul.t-online.de!t-online.de!news-spur1.maxwell.syr.edu!n
ews.maxwell.syr.edu!news-out1.nntp.be!propagator2-sterling!news-in-sterling.
newsfeed.com!pd2nf1so.cg.shawcable.net!residential .shaw.ca!sn-xit-03!sn-xit-
01!sn-xit-09!supernews.com!postnews1.google.com!not-for-mail
!Xref: cpmsftngxa07.phx.gbl microsoft.public.dotnet.general:108219
!X-Tomcat-NG: microsoft.public.dotnet.general
!
!UPDATE: I emailed crystal about this subject and here is there response:
!
!Hello Rick,
!
!First I would like to thank you for using Answer By Emails (ABE) service.
!
!Unfortunately, unbound field is not supported in Crystal Reports for
!VS.NET.
!
!For information on using Crystal Reports for Visual Studio .NET with
!ADO.NET, go to 'http://support.crystaldecisions.com/docs' and search for:
!'crnet_adonet.pdf'
!
!For a sample application demonstrating passing an ADO.NET dataset to a
!report, go to http://support.crystaldecisions.com/download and search for:
!Vbnet_win_adodotnet.exe
!
!
!ri*******@alliantenergy.com (Rick Thiel) wrote in message
news:<39**************************@posting.google. com>...
!> Hello,
!>
!> I am trying to build a Crystal report VisualStudio.NET for an ASP.NET
!> application. I would like to build a report that doesn't connect to
!> any particular database at design time because I am planning to pass a
!> dataset to the report at runtime. From what I have read, it sounds
!> like unbound fields might be the answer. However, I am having trouble
!> figuring out how to bind these unbound fields to my dataset at
!> runtime.
!>
!> Any help would be greatly appreciated! thanks, --Rick
!>
!> //Here is the code I have so far...
!> ReportDocument crReportDocument = new ReportDocument();
!>
!> //Grab the dataset from session
!> DataSet ds = (DataSet)Session["CRDataset"];
!> DataTable dt = ds.Tables["MY_TABLE"];
!>
!> //load the report from disk
!> crReportDocument.Load(@"C:\Inetpub\wwwroot\MyApp\R eports\MySummary.rpt");
!> crReportDocument.SetDataSource(dt);
!>
!> //*****************************
!> // TODO: I have an unbound field named "UnboundString1"
!> // I need to assign a column from the dataset to that field.
!> // Is that possible on an ASP.NET application
!> //*****************************
!>
!> //set the options for saving the exported file to disk
!> DiskFileDestinationOptions dfdOptions = new
!> DiskFileDestinationOptions();
!> dfdOptions.DiskFileName = strPathFname;
!>
!> //set the exporting information
!> ExportOptions crExportOptions = new ExportOptions();
!> crExportOptions = crReportDocument.ExportOptions;
!> crExportOptions.DestinationOptions = dfdOptions;
!> crExportOptions.ExportDestinationType =
!> ExportDestinationType.DiskFile;
!> crExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat;
!>
!> //Export the report and write the file to the client browser
!> crReportDocument.Export();
!

Jul 21 '05 #4
Hi, Scott

Crystal Reports has always generated a lot of questions.
Microsoft.public.vb.crystal gets a lot of traffic, but it also causes
confusion. because Crystal is not a Microsoft product, even though it
ships with VS.Net, Our policy has been to point our customers at Crystal's
site, http://www.crystaldecisions.com/ because that is where Crystal
Decisions has committed to be. They have a self-help section and they offer
phone & e-mail support. Their web sites states that you get two Crystal
incidents with the purchase of Visual Studio .NET.

I hope that this clarifies things a bit,

John Eikanger
Microsoft Developer Support

This posting is provided “AS IS” with no warranties, and confers no rights.
"Microsoft highly recommends to all of our customers that they visit the
http://www.microsoft.com/protect site and perform the three straightforward
steps listed to improve your computer’s security."

--------------------
| From: "Scott" <do**@email.me>
| References: <39**************************@posting.google.com >
| Subject: Re: Crystal Report Unbound Fields
| Date: Sat, 13 Sep 2003 18:25:25 -0600
| Lines: 11
| X-Tomcat-NG: microsoft.public.dotnet.general
|
| There's getting to be quite a few Crystal questions in these groups. Does
| anyone know how we can get MS to add a
| microsoft.public.dotnet.crystalreports group?
|
| Sorry for not being able to help with your question. <g>
|
| Scott
|
| > I am trying to build a Crystal report VisualStudio.NET for an ASP.NET
|
|
|

Jul 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Stephan | last post by:
Hi, I'm using Visual Studio 2003 (C#) with the integrated Crystal Report software and have the following question: How can I assign a value (string) to an unbound (string) field in Crystal...
0
by: Steve | last post by:
I know this might not be the best place to get help for this particular problem, but here goes.. The 2nd edition of ProfessionalCrystal Reports for Visual Studio .NET states "you will learn how to...
2
by: Pierre | last post by:
Hi, Can anyone tell me how I can populate Crystal Reports, using a DataTable in C#? Regards, Pierre
3
by: Diggler | last post by:
I was working on a report that is populated with three different tables in a strongly-typed dataset. The tables are populated from custom objects rather than directly from SQL Server. I loop...
0
by: Téo | last post by:
Hi, I have created a crytal report based on a table of my SQL Server. Everything works fine. I would like now to fill my report with a sql request in the code behind instead of the table in the...
3
by: Téo | last post by:
I don't see my question with my newsreader, just try to post a last time, sorry if it's (one more...) bug of OE... Hi, I have created a crytal report based on a table of my SQL Server....
4
by: Rick Thiel | last post by:
Hello, I am trying to build a Crystal report VisualStudio.NET for an ASP.NET application. I would like to build a report that doesn't connect to any particular database at design time because I...
3
by: Tmuld | last post by:
Hello, I was provided a .rpt file which is Crystal Reports report. It opened with VS .NET 2003. On the left side in the Field Explorer - there are seveal categories - Database Fields -...
0
by: amiga500 | last post by:
Hello, I am developing a crystal report called Expense Report (I am not an expert Crystal Report designer) if someone could help me in this problem I would be greatly appreciate it. The report...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.