ActiveReports 6 Online Help
NewReport() Method
Example 

Initializes the designer with a new report layout.
Syntax
'Declaration
 
Public Sub NewReport() 
public void NewReport()
Example
/// <summary>
/// NewReport - an Interface function from IPlugInHost
/// </summary>
/// <param name="name">Name to use for the Document</param>
/// <returns>Current report object in the designer</returns>
public object NewReport(string name)
{    
   try
   {
       this.ardMain.NewReport();
       this.ardMain.Report.Document.Name = name;
       return this.ardMain.Report;
   }
   catch(DataDynamics.ActiveReports.ReportException)
   {
       MessageBox.Show("Error occurred while creating new report", "Error in Diamond Reports");
       return null;
   }
   
}
'NewReport - an Interface function from IPlugInHost
'Parameter Name: name - Name to use for the Document
'Returns: Current report object in the designer
Public Function NewReport(ByVal name As String) As Object Implements IPlugInHost.NewReport
    Try
        Me.ardMain.NewReport()
        Me.ardMain.Report.Document.Name = name
        Return Me.ardMain.Report
    Catch ex As DataDynamics.ActiveReports.ReportException
        MessageBox.Show("Error occurred while creating new report", "Error in Diamond Reports")
        Return Nothing
    End Try
End Function 'NewReport
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Designer Class
Designer Members

Send Feedback