I have the following code which works well in debug mode, but it cannot show/search any file in release mode. anyone knows how to fix it?
<code>
Dim fd as filedialog
fd.filepath = "storage/emulated/0/documents/"
fd.filefilter = ".xls"
dim sf as object = fd.showasync("choose a file","confirm","","cancel",null,false)
</code>
<code>
Dim fd as filedialog
fd.filepath = "storage/emulated/0/documents/"
fd.filefilter = ".xls"
dim sf as object = fd.showasync("choose a file","confirm","","cancel",null,false)
</code>