あなたの助けが必要です 。テーブル ランタイムにサブレポートを追加したいと考えています。コードは次のとおりです。
xrTableCell14.Controls.Add(xrSubreport5);
xrSubreport5.BringToFront();
xrSubreport5.Location = new Point(0, 0);
しかし、それは結果を示すことができません。私はC#を使用しています
あなたの助けが必要です 。テーブル ランタイムにサブレポートを追加したいと考えています。コードは次のとおりです。
xrTableCell14.Controls.Add(xrSubreport5);
xrSubreport5.BringToFront();
xrSubreport5.Location = new Point(0, 0);
しかし、それは結果を示すことができません。私はC#を使用しています
ありがとうビジェイ。私はその問題を解決しました。コード :
sub_Rpt_Education_RPT Education = new sub_Rpt_Education_RPT();
Education.DataSource = _dt;
Education.DataMember = "dtEducation";
xrSubEducation.ReportSource = Education;
xrTableRow12.Height = Education.RowCount * 23;
残念ながら、実際の XtraReports の実装では、このシナリオを実装する機能は提供されていません。
DevExpress のこのフォーラム投稿を参照してください。複数の人がこの機能を求めていますが、まだ実装されていません!
http://community.devexpress.com//forums/p/55360/186621.aspx#186621