//create a new workbook
var workbook = new GrapeCity.Documents.Excel.Workbook();
//Change the path to the real file path when open.
workbook.Open("source.xlsx");
' Create a new Workbook
Dim workbook As New Workbook
'Change the path to the real file path when open.
workbook.Open("source.xlsx", OpenFileFormat.Xlsx)