When I load an xls file, which is created by the user, to SpreadSheetGear workbook it changes date format from dd/mm/yyyy to mm/dd/yyyy. How can I prevent this?
I use the code below (VB.NET) to load xls file:
WorkbookView1.ActiveWorkbook =
SpreadsheetGear.Factory.GetWorkbookSet.Workbooks.OpenFromMemory(xlsFile)
xlsFile is a Byte array.