0

私は Stimulsoft Reports を初めて使用し、ここで苦労しています。レポートにデータ セットを表示できません。単純な Report.mrt ファイルを作成しましたが、空です。これまでに行ったこと...

    private void button1_Click(object sender, EventArgs e)
    {
        DataTable table = GetTable();
        DataSet ds = new DataSet("office");
        ds.Tables.Add(table);
        ds.Namespace = "y";
        ds.Prefix = "x";
        stiReport1.RegData("MyDataSet", ds);
        stiReport1.Load("D:\\Report.mrt");
        stiReport1.Show();
    }

    public DataTable GetTable()
    {
        DataTable table = new DataTable();
        table.Columns.Add("Dosage", typeof(int));
        table.Columns.Add("Drug", typeof(string));
        table.Columns.Add("Patient", typeof(string));
        table.Columns.Add("Date", typeof(DateTime));

        table.Rows.Add(25, "Indocin", "David", DateTime.Now);
        table.Rows.Add(50, "Enebrel", "Sam", DateTime.Now);
        table.Rows.Add(10, "Hydralazine", "Christoff", DateTime.Now);
        table.Rows.Add(21, "Combivent", "Janet", DateTime.Now);
        table.Rows.Add(100, "Dilantin", "Melanie", DateTime.Now);
        return table;
    }

これは何も表示されず、ここから何をすべきかわかりません。Report.mrt にテキスト フィールドを追加する必要がありますか?

4

1 に答える 1

3

まず、 を のstiReport1.Load前に移動しstiReport1.RegDataます。
次に、レポートをコンパイルする必要があります

stiReport1.Load("D:\\Report.mrt");
stiReport1.RegData("MyDataSet", ds);
stiReport1.Dictionary.Synchronize();
stiReport1.Compile();
stiReport1.Show(true);
于 2013-07-22T19:29:56.813 に答える