1
の登録は、私は次のコードでデータセットを登録してみてください。FastReport.Net。データセット
ds = new DataSet();
adapter.Fill(ds);
ds.Tables.Add("test");
report1.Load("report1.frx");
report1.RegisterData(ds, "user_ds");
report1.GetDataSource("test").Enabled = true;
((DataBand)report1.FindObject("Data1")).DataSource = report1.GetDataSource("test");
report1.Show();
けど)(report1.Showにエラーが発生します。
(GroupHeader1):エラーCS1525:無効な表現の用語 '['
GroupHeader1は、 "[日付]" を持つ単一のTextObjectが含まれています。私は何が間違っていますか?
日付は、現在の日付を返すFastReport.Net関数です。データセット/データソースなしで動作します。 – GrApDev