Hi Guys,
I have an excel file which contain around 40,000 row and the size of the file around 7 megabytes. And this file can be larger in the future.
I am having an issue when try to read this large excel file.
Below is my code
Btw, with an excel file with the size of 1 or 2mb, i have no issue.
Does anyone have a solution for my issue please?
Thanks in advance
I have an excel file which contain around 40,000 row and the size of the file around 7 megabytes. And this file can be larger in the future.
I am having an issue when try to read this large excel file.
Below is my code
B4X:
Dim workbook1 As ReadableWorkbook
Dim sheet1 As ReadableSheet
workbook1.Initialize(File.DirDefaultExternal, "MYFILE.XLS")
sheet1 = workbook1.GetSheet(0) 'this where my application terminate unexpectedly
Btw, with an excel file with the size of 1 or 2mb, i have no issue.
Does anyone have a solution for my issue please?
Thanks in advance