CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    May 2003
    Posts
    4

    Question Using Crystal Report with Database connection

    Currently we have are creating crystal report using a database to derive the data required for the report. Is there a way to create a crystal report without using the database. I know that we can define tags in the report template that can be initilized via Crystal report APIs without using the database, but I have a report that has a list of items and I need to populate it with rows of data without having to write the data to the database first.

    I would like to somehow create the report template to accept a list of items? Is this possible? if so, how and may an example.

    thanks in advance.

  2. #2
    Join Date
    Jun 2003
    Location
    Maryland
    Posts
    53
    I have a report that has a list of items and I need to populate it with rows of data without having to write the data to the database first.
    What is the source of this data? What format is it in?

  3. #3
    Join Date
    May 2003
    Posts
    4
    I have a list of structs with attriubtes of type ints and strings

    for ex:

    struct employee
    int empId;
    int ss;
    string name;
    stirng address

    I want to create a report with list of employee info

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured