Read and write Excel files with Powerbuilder
Read and write Excel files with Powerbuilder, supporting xls, xlsx, wps file formats: https://github.com/freemantau/rwexcel
Read and write Excel files with Powerbuilder, supporting xls, xlsx, wps file formats: https://github.com/freemantau/rwexcel
Столкнулся с необходимостью программно изменять параметр New Page on Group Break (Если выбран, каждая группа начинается с новой страницы)
Возможность установки параметра newpage=yes (no) при помощи функции Modify() не предусмотрена ...
Решение:
string ls_syntax
ls_syntax = dw_report.describe("datawindow.syntax")
ls_syntax = uo_string.of_globalreplace(ls_syntax, "newpage=yes", "")
dw_report.create(ls_syntax)
Иногда требуется конвертация .doc в .rtf (или иные форматы) без использования MS Word. Spire.Doc вполне подходит для решения этой задачи.
#IF Defined PBDOTNET Then
Spire.Doc.Document document
Spire.Doc.Section section
Spire.Doc.Documents.Paragraph paragraph
Spire.Doc.FileFormat fileformat
document = create Spire.Doc.Document
fileformat = Spire.Doc.FileFormat.DOCX!
document.LoadFromFile(as_source_file, fileformat);
fileformat = Spire.Doc.FileFormat.Rtf!
document.SaveToFile(as_destination_file, fileformat);
#END IF