I want to use CrystalREport in my form in Visul Studio. I do next actions in
Windows Application project
1.I add CrystalReport component into my project. In the Crystal Wizard I
choose source - ADO.Net DataSet, then select necessary Base and tables.
2. Then in the form I add component ReportDocument and choose name of the
existing crystalreport in my project
3. I add CrystalReportViewer into my form. I set its ReportSource to
ReportDocument(written above).
4. In the form's code I write
...
table.Fill(dataSet11, "My_Table");
ReportDocument .SetDataSource(dataSet11);
...
5. When I run the form there is Database Login Window. Whatever parameters
for connection I feel there they are always ignored.
If I choose in step 1 source ODBC everithing is okey.
Can me please tell what do I wrong?!!!