you need a report file, schema file, datatable which adheres to schema.
there is a schema generator in the 3rd party section of the website.
steps.
1. create TypedList
2. create schema
3. create report
4. report references schema as the datasource
5. put code in place
ReportDocument rpt = new MyReport();
MyTypedList results = new MyTypedList();
new DataAccessAdapter().FetchTypedList(results);
rpt.SetDataSource(results);
//then display report using your method of choice
I usually create my schemas manually, so I don't know the details of using the tool in the 3rd party section. as you can see most of this is design work, not coding work, so it's difficult to explain without images.