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( ) ); }; } } }