VB.Net beginner

Hi,

Can someone gives me the codes lines to import an Excel spreadsheet into an aspose.grid.desktop ???

Thank

Tired of being a beginner !!!!

Hi,

Here it is:

'From Streams.

Dim fs As FileStream = New FileStream("d:\book1.xls",FileMode.Open)
Try
gridDesktop1.ImportExcelFile(fs)
Catch ex As Exception
Throw ex
Finally
fs.Close()
End Try

'Getting string file path.

gridDesktop1.ImportExcelFile("d:\test\FinancialPlan.xls")

Thank you.