Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6923455
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T10:32:17+00:00 2026-05-27T10:32:17+00:00

I wan’t to create DataSet from code and set it as data source for

  • 0

I wan’t to create DataSet from code and set it as data source for crystal report.
I don’t want to create a DataSet xsd file in VS if I don’t have to. Just pure code.

DataSet ds = new DataSet();
DataTable tbl = new DataTable();
DataColumn cln = new DataColumn();
// I fill row, columns, table and add it to ds object
...

Then when I need report I use:

myReport.SetDataSource(ds);

The problem here is I don’t know how to bind this to report? How to add fields?
I have a text and binary data (image).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T10:32:17+00:00Added an answer on May 27, 2026 at 10:32 am

    There is only way out. As suggested by rosado. Little bit explained
    1. CReate a RPT File.
    2. Create a XSD with the desired columns.
    3. Drag drop the columns on the rpt. Format it as required.
    4. Now create connection, use adapter to fill that dataset.
    5. Filling u dataset will automatically fill the report columns.

    Below is a sample code from one of mine project.

    Invoice invoice = new Invoice(); // instance of my rpt file
    var ds = new DsBilling();  // DsBilling is mine XSD
    var table2 = ds.Vendor;
    var adapter2 = new VendorTableAdapter();
    adapter2.Fill(table2);                   
    
    var table = ds.Bill;
    var adapter = new BillTableAdapter();
    string name = cboCustReport.Text;
    int month = int.Parse(cboRptFromMonth.SelectedItem.ToString());
    int year = int.Parse(cboReportFromYear.SelectedItem.ToString());
    adapter.Fill(table, name,month,year);
    
    ds.AcceptChanges();
    
    invoice.SetDataSource(ds);
    crystalReportViewer1.ReportSource = invoice;
    crystalReportViewer1.RefreshReport();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wan't to load some data from my XML file using this function: public
I wan to remove the last set of data from string using java. For
I wan't to register the OnMouseOver and OnMouseOut-Event for an Image from the Code
I've connected to database, using data set .xsr now I wan't to extract all
I wan't want to create a cross-plattform programm that embedds the python interpreter, and
I wan't to get data's from CallLog.Calls.CONTENT_URI in non Activity classes. Am using cursor
I wan't to set a class variable of a class from the outside(via attr_accessor),
i wan to disable drag event using jquery and want to bind one another
I wan't to write a script to get the source of a website which
Is there an open source /freeware wan similator for windows ?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.