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.
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.