[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.SectionReport.ReportStart

ReportStart Event

Occurs at the start of report processing.

Namespace: GrapeCity.ActiveReports
Assembly: MESCIUS.ActiveReports.dll
Syntax
public event EventHandler ReportStart
Returns
Type Description
EventHandler Occurs at the start of report processing.
Examples
var sectionReport = new GrapeCity.ActiveReports.SectionReport();
sectionReport.Document.Printer.PrinterName = String.Empty;
sectionReport.ReportStart += (sender, e) =>
{
	using(connection = new OleDbConnection(m_cnnString)
	{
		var command = new System.Data.OleDb.OleDbCommand(sql, connection);
		command.Connection.Open();
		_reader = command.ExecuteReader();
	}
};