المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : Generating Crystal Reports from class objects



C# Programming
06-13-2009, 02:11 PM
Hi to all,

I have a 'Child' class as follows,
public class Child
{
public string FirstName, MiddleName, LastName;
public string Sex;
public DateTime DOB;
public string EducationDetails;
public string Health;
}

In my application, I am having multiple objects of 'Child' class storing information of each Child.
Using those objects, I want to generate Crystal Reports for each child showing his details. And then I will convert those reports to PDF files.

How to do this? How to generate multiple crystal reports from multiple objects of 'Child' class or any class?

Please help.

I appreciate any and all comments and suggestions.

Thanks & Regards,
Aniket A. Salunkhe