B4A Code Snippet Export B4XTable to Excel File (B4A) - Brian Michael    Dec 25, 2022   (15 reactions) Hello everyone, I want to share a method to be able to export a table from B4XTable to an Excel...+
Public Sub ExportTableToExcel(Table As B4XTable, FileName As String)
Log("Exporting table... B4A Tutorial [B4X] B4XTable - Editable table and export to CSV - Erel    Apr 11, 2019   (15 reactions)   tags: xuiTable, B4X B4XTable Editable tbl its content.
The data in B4XTable is stored in an in-memory database. The table name is 'data... editable table: https://www.b4x.com/android/forum/threads/b4x-cross-platform-editable-b4xtable-form... B4J Code Snippet Export B4XTable to Excel File - Brian Michael    Mar 3, 2022   (15 reactions) Hello everyone, I want to share a method to be able to export a table from B4XTable to an Excel....6+
Public Sub ExportTableToExcel(Table as B4XTable)
Dim xl As XLUtils : xl.Initialize... B4A Question export b4xtable to excel in b4a - Brian Michael (first post)    Jan 11, 2024 Hi, i also create a B4A example:
https://www.b4x.com/android/forum/threads/export-b4xtable-to-excel-file-b4a.145029/... B4J Question Export B4XTable to JSON - Brian Michael (first post)    Apr 2, 2020 I get the solution:
I just create a Map var to set the data, before i add this map in the list.
Do While rs.NextRow
Dim row As List
row.Initialize
Dim trow As Map
trow.Initialize
Dim c As B4XTableColumn
For i = 0 To Table.Columns.Size - 1
c = Table.Columns.Get(i)
Select c.ColumnType... B4A Question Export filtered data in B4Xtable - Mostez    Jul 13, 2020 based on Erel's example, I use this code to export data from B4Xtable in different activities...")
Public Sub ExportTableToCSV(Table As B4XTable,ExportFileName As String) As ResumableSub...
Dim c As B4XTableColumn = Table.Columns.Get(i)
row(i) = rs.GetString(c.SQLID... B4A Question [SOLVED] Export Specific B4XTable Columns - ProjectGroup19 (first post)    Mar 2, 2022
For Each c As B4XTableColumn In B4XTable1.Columns
If... B4J Code Snippet [B4X] B4XTable Export to JSON - Brian Michael    Mar 17, 2020 Hi, how can i export or convert the B4XTable rows to a json file?... B4A Question Exporting data from B4XTable to .csv file - TonyVerberne (first post)    Jan 6, 2020 Thanks for this suggestion Erel.... B4A Question [B4X] Print a B4XTable - export to html - PaulMeuris (first post)    Oct 2, 2022   (1 reaction)
I am very familiar with BuildQuery. I use it a lot. It is nothing but a representation of a paramet... Page: 1   2   3   4   5   6   7   |