hello,
I usually use
or
is it ok;
but how can I save to the server folder? (example "./assets")
I usually use
B4X:
Dim pdf As SDUIJSPDF
pdf.Initialize(Me, "", "myTable.pdf")
tabpdf.ExcelTitle = "a nice table"
pdf.ExportTable(tabpdf.ExcelTitle, tabpdf.Orientation, tabpdf.PageSize, tabpdf.Unit, tabpdf.FontSize, tabpdf.PdfTheme, tabpdf.PageBreakRepeat, tabpdf.GetFieldNames, tabpdf.GetTitleNames, tabpdf.Originals)
B4X:
Dim pdf As SDUIJSPDF
pdf.Initialize(Me, "", "example.pdf")
pdf.start
pdf.SetText1("Hello", "80", "10")
pdf.Save
but how can I save to the server folder? (example "./assets")