如何使用Crystal Report绑定最后的数据?

时间:2019-04-15 11:04:44

标签: c# crystal-reports-2010

尽管我尝试观看一些视频,但我不知道如何将数据集与Crystal Report绑定。

我正在使用VS 2010 SQL服务器20080R2 2010年水晶报告

我想从水晶报表中打印发票,因为我设法设计了报表,但是当我编写代码以显示SQL Server的最后数据时遇到了一个问题。 请完成我的代码。

这是我的名为feereceipt的表 feereceipt table 和构成crystalreportviewr的窗口形式 form1 design

code 和我的水晶报告 report

using System.Data.SqlClient;
using CrystalDecisions.CrystalReports.Engine;
using System.Configuration;
namespace Project22
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            try
            {
                 string cn = System.Configuration.ConfigurationManager.ConnectionStrings["mydb"].ConnectionString;
                SqlConnection con = new SqlConnection(cn);
                con.Open();
                SqlCommand cmd = new SqlCommand ("select * from feereceipt where std_id = max(std_id)",con);
                SqlDataAdapter da = new SqlDataAdapter (cmd);
                //complete my code
            }

            catch (Exception ex)
            {
                MessageBox.Show(ex.Message );
            }

        }
    }
}

0 个答案:

没有答案