summaryrefslogtreecommitdiff
path: root/src/app/PlayingWithActiveReports.Win.UI/SimpleReport.cs
blob: 7a6276ef8913bd164efdd830adf031cfcd870685 (plain)
1
2
3
4
5
6
7
8
9
10
11
using DataDynamics.ActiveReports;

namespace PlayingWithActiveReports.Win.UI {
	public partial class SimpleReport : ActiveReport3 {
		public SimpleReport( ) {
			InitializeComponent( );

			this.detail.Format += delegate { detail.AddBookmark( uxQuestionText.Value.ToString( ) ); };
		}
	}
}