FastReport fetch data
I have this project on c# windows forms and what I have to do is get some data from a web service and present them to FastRaport. I have tried display them on a DataGridView first and then fetching the data from it and it works pretty nice. I can download the file and then it gives me a dialog asking me in what format do I want to save it. But now the requirement is to not use gridview at all, just a button that would convert directly those data into a PDF file.
Can you please help me with a pseudo code at least or a reference link or something? I would really appreciate it.
Comments
Here's my code for displaying the data into DataGridView:
Here's the part where I pass the data from GridView to the FastReport "database".
My question is, how can I make it to fetch the data without the gridview, directly from webservice and load it into a FastReport -> PDF file?