4 Replies - 1031 Views - Last Post: 06 February 2012 - 06:11 AM Rate Topic: -----

#1 raiden1911  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 5
  • Joined: 05-February 12

crystal reports doesnt show data

Posted 05 February 2012 - 09:49 AM

crystal report doesnt show data,it is connected with the dataset,it doesnt give any error. just doesnt show any data. dataset is filled,because i am using it .any idea?i am using firebird as databse
Is This A Good Question/Topic? 0
  • +

Replies To: crystal reports doesnt show data

#2 nK0de  Icon User is offline

  • Catch me As Exception
  • member icon

Reputation: 204
  • View blog
  • Posts: 823
  • Joined: 21-December 11

Re: crystal reports doesnt show data

Posted 05 February 2012 - 09:59 AM

I think the problem is with your code. what's the language you're writing your program?
Was This Post Helpful? 0
  • +
  • -

#3 raiden1911  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 5
  • Joined: 05-February 12

Re: crystal reports doesnt show data

Posted 05 February 2012 - 10:01 AM

i am a very new c# programmer,
thats the code

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using CrystalDecisions.Shared;
using System.Drawing.Printing;
using CrystalDecisions.CrystalReports.Engine;


namespace SiteYoenetim
{
    public partial class crPersonelRapor : Form
    {
        public crPersonelRapor()
        {
            InitializeComponent();
        }

        private void crPersonelRapor_Load(object sender, EventArgs e)
        {
            // TODO: Diese Codezeile lädt Daten in die Tabelle "DataSet1.PERSONEL". Sie können sie bei Bedarf verschieben oder entfernen.
            this.pERSONELTableAdapter.Fill(this.DataSet1.PERSONEL);
            this.crystalReportViewer1.RefreshReport();
        }

        private void crystalReportViewer1_Load(object sender, EventArgs e)
        {

        }

       

        
    }
}


Was This Post Helpful? 0
  • +
  • -

#4 modi123_1  Icon User is offline

  • Suitor #2
  • member icon



Reputation: 6490
  • View blog
  • Posts: 23,579
  • Joined: 12-June 08

Re: crystal reports doesnt show data

Posted 05 February 2012 - 11:30 AM

.. moved to C# (from database).
Was This Post Helpful? 0
  • +
  • -

#5 eclipsed4utoo  Icon User is offline

  • Not Your Ordinary Programmer
  • member icon

Reputation: 1511
  • View blog
  • Posts: 5,916
  • Joined: 21-March 08

Re: crystal reports doesnt show data

Posted 06 February 2012 - 06:11 AM

Where are you connecting the DataSet to the report? Simply populating a DataSet and putting a Crystal Report on a form doesn't mean it's going to magically work. You have to relate the two.
Was This Post Helpful? 0
  • +
  • -

Page 1 of 1