Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Reporting off Ado.net Datasets

Status
Not open for further replies.

lutzs

Programmer
Oct 8, 2002
75
LU
Hi!

Before I can report off of an ADO.net Dataset I must perform the following tasks:
- generate an object for the dataset
- connect to the ADO.net Dataset object

At the beginning of the class definition for the Windows Forms, i have typed:

public CrystalReport1 oRpt = new CrystalReport1();

And the error message is:
The type or namespace name 'CrystalReport1' could not be found (are you missing a using directive or an assembly reference?)

I added this namespaces:
using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions.Shared;

What can I do?

Thanks.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top