ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports.SectionReportModel Namespace / OleObject Class / CreateFrom Method
Specifies the file to be used to create an embedded Ole object.  A valid Ole server for the specified file type should be installed to handle the file instance.
Example

In This Topic
    CreateFrom Method
    In This Topic
    Creates an Ole Object to embed in the control from the specified file.
    Syntax
    'Declaration
     
    Public Sub CreateFrom( _
       ByVal fileName As String _
    ) 
    public void CreateFrom( 
       string fileName
    )

    Parameters

    fileName
    Specifies the file to be used to create an embedded Ole object.  A valid Ole server for the specified file type should be installed to handle the file instance.
    Example
    private void detail_Format(object sender, System.EventArgs eArgs)
    {
        this.OleObject1.CreateFrom("C:\\MailAliases.xls");
    }
    Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
        Me.OleObject1.CreateFrom("C:\MailAliases.xls")
    End Sub
    See Also