diff options
Diffstat (limited to 'src/app/PlayingWithActiveReports.Win.UI/SimpleReport.cs')
| -rw-r--r-- | src/app/PlayingWithActiveReports.Win.UI/SimpleReport.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/app/PlayingWithActiveReports.Win.UI/SimpleReport.cs b/src/app/PlayingWithActiveReports.Win.UI/SimpleReport.cs new file mode 100644 index 0000000..7a6276e --- /dev/null +++ b/src/app/PlayingWithActiveReports.Win.UI/SimpleReport.cs @@ -0,0 +1,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( ) ); };
+ }
+ }
+}
\ No newline at end of file |
