0 Replies - 62 Views - Last Post: 05 February 2012 - 10:41 AM Rate Topic: -----

Topic Sponsor:

#1 raiden1911  Icon User is offline

  • New D.I.C Head

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

crystal report doesnt show data,it is connected with the dataset,it do

Posted 05 February 2012 - 10:41 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




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)
        {

        }

       

        
    }
}



Is This A Good Question/Topic? 0
  • +

Page 1 of 1