dataClass data = new dataClass();
        private void Form1_Load(object sender, EventArgs e)
        {
            string tablename = "訂單資料";
            DataSet ds = data.show("select * from " + tablename, tablename);
            CrystalReport1 orpt = new CrystalReport1();
            orpt.SetDataSource(ds);//運行後這裡報錯,(報表沒有資料表)
            this.crystalReportViewer1.ReportSource = orpt;
       }
為什么會這樣?  dataset裡有數據表的
是不是之前還要對CrystalReport1做一些設置, 我現在僅僅是CrystalReport1拉進來的,沒做任何設置,是不是這裡的原因???達人請指教~~