I need create excel file via creating csv file ,but I have some error code. How to solved it?
P.S. I have to use non-b4xpages coding strategy.
Unknown type: contentchooser<br />Are you missing a library reference?
Unknown type: contentchooser<br />Are you missing a library reference?
Unknown type: b4xset<br />Are you missing a library reference?
Unknown type: resultset<br />Are you missing a library reference?
B4A + B4i example: https://www.b4x.com/android/forum/threads/b4x-texteditor-save-and-load-external-files.132731/#post-838166 List of classes or libraries that can be used to access secondary storages: ContentChooser (Phone libray) - allows the user to select a resource or file using external...
I still have error message as belows
[Quate]
B4A Version: 13.30
Parsing code. Error
Error parsing program.
Error description: Undeclared variable 'b4xpages' is used before it was assigned any value.
Error occurred on line: 82 (FileHandler)
Dim Activity As Activity = B4XPages.GetNativeParent(B4XPages.MainPage)
[/Quate]
I think about FileHandler library is not supported both of Non-B4XPage and B4XPages likes this
In MyLib , I will code both of them as belows when I create a project by using non-b4xpage, it will be supported , on another hand, when I create a project by using b4xpages, it will be supported, as well. (refer to the same library)So I think filehandler lib lacked this.
B4X:
Try
'using B4XPages code
Catch
'using Not B4XPagescode
End Try
B4A + B4i example: https://www.b4x.com/android/forum/threads/b4x-texteditor-save-and-load-external-files.132731/#post-838166 List of classes or libraries that can be used to access secondary storages: ContentChooser (Phone libray) - allows the user to select a resource or file using external...