Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / FpSpread Class / OpenExcel Method / OpenExcel(String,ExcelWarningList) Method
Path and name of file to open
List of warning messages that occur during this operation
Example


In This Topic
    OpenExcel(String,ExcelWarningList) Method
    In This Topic
    Opens an Excel file into the Spread component keeping track of warnings.
    Syntax
    'Declaration
     
    
    Public Overloads Function OpenExcel( _
       ByVal fileName As String, _
       ByVal warningList As ExcelWarningList _
    ) As Boolean
    'Usage
     
    
    Dim instance As FpSpread
    Dim fileName As String
    Dim warningList As ExcelWarningList
    Dim value As Boolean
     
    value = instance.OpenExcel(fileName, warningList)

    Parameters

    fileName
    Path and name of file to open
    warningList
    List of warning messages that occur during this operation

    Return Value

    Boolean: true if successful; false otherwise
    Example
    This example opens a Microsoft Excel file, test.xls.
    ExcelWarningList w=new ExcelWarningList();
    FpSpread1.OpenExcel("test.xls",w);
    Dim w As FarPoint.Excel.ExcelWarningList
    FpSpread1.OpenExcel("test.xls",w)
    See Also