ActiveReports3 Request technical support
CreateFrom Method
See Also  Example


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.
Creates an Ole Object to embed in the control from the specified file.

Syntax

Visual Basic (Declaration) 
Public Sub CreateFrom( _
   ByVal fileName As String _
) 
Visual Basic (Usage)Copy Code
Dim instance As OleObject
Dim fileName As String
 
instance.CreateFrom(fileName)
C# 
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

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
   
this.OleObject1.CreateFrom("C:\\MailAliases.xls");
}
Visual BasicCopy Code
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