'Declaration Public Overloads Function OpenExcel( _ ByVal fileName As String, _ ByVal password As String _ ) As Boolean
Parameters
- fileName
- Path and name of file
- password
- Password of file
'Declaration Public Overloads Function OpenExcel( _ ByVal fileName As String, _ ByVal password As String _ ) As Boolean
Exception | Description |
---|---|
System.IO.FileNotFoundException | Specified file is not found |
System.ArgumentNullException | No file name is specified (or specified file name is null) |
System.ArgumentException | No file name is specified (or specified file name is empty) |
string f; f = "D:\\formula1.xls"; fpSpread1.OpenExcel(f, "test");
Dim f As String f = "D:\formula1.xls" FpSpread1.OpenExcel(f, "test")