Search found 105 matches: exporting

Searched query: exporting

by Otto
Mon Mar 03, 2025 6:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: html report generator triathlon
Replies: 3
Views: 988

Re: html report generator triathlon

... is a quick, ready-made solution.
If you need flexible, interactive reports for a web application, HTML with JS is the better choice.

For exporting HTML reports, you could use Puppeteer (Headless Chrome) to convert HTML pages into PDFs.

What is your specific use case? I can give you more ...
by Antonio Linares
Fri Jan 24, 2025 11:19 am
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 7656

Re: Using new Class TDeepSeek for documenting

... These are like the paint job, interior design, and lights of your car – everything that makes it look and present information to the user.

7. Exporting Methods:

ToExcel(), ToXlsx(), ToCalc(), ToWord(), ToHTML(), ToCSV(), ToArray(), ClpRow(), Copy(): These methods provide ways to export the data ...
by Antonio Linares
Fri Jan 24, 2025 10:37 am
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 7656

Re: Using new Class TDeepSeek for documenting

... lPreview, lModal, bSetUp, aGroupBy, cPDF, aCols )

Description: Generates a report from the browse data, allowing for preview, printing, and exporting to PDF.

Parameters:

cTitle: CHARACTER - Title for the report.

lPreview: LOGICAL - .T. to show print preview dialog, .F. for direct printing ...
by Armando
Tue Nov 26, 2024 4:30 am
Forum: FiveWin for Harbour/xHarbour
Topic: A Problem exporting Report to Excel, Mr Rao, pls
Replies: 6
Views: 1803

Re: A Problem exporting Report to Excel, Mr Rao, pls

Mr. Rao:

Please don't forget my problem

Greetings
by Armando
Fri Nov 22, 2024 4:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: A Problem exporting Report to Excel, Mr Rao, pls
Replies: 6
Views: 1803

Re: A Problem exporting Report to Excel, Mr Rao, pls

Mr. Rao:

Thank you very much, I will be waiting for your response

Best regards
by Armando
Fri Nov 22, 2024 3:30 am
Forum: FiveWin for Harbour/xHarbour
Topic: A Problem exporting Report to Excel, Mr Rao, pls
Replies: 6
Views: 1803

Re: A Problem exporting Report to Excel, Mr Rao, pls

Mr. Rao:

Thank you for your interest in my problem.

I commented the last two lines of code, the first two lines were already commented


/*
cAdr := oSheet:Range( oSheet:Cells( aGrpRow[ nGrp ], nCol ), ;
oSheet:Cells( nLastRow, nCol ) ):Address( .f., .f. )
*/
/*
oSel := oSheet:Range( oSheet ...
by nageswaragunupudi
Fri Nov 22, 2024 1:56 am
Forum: FiveWin for Harbour/xHarbour
Topic: A Problem exporting Report to Excel, Mr Rao, pls
Replies: 6
Views: 1803

Re: A Problem exporting Report to Excel, Mr Rao, pls

For the purpose of testing, can you comment out the line 2405 of report.prg and rebuild and test again?
by Armando
Thu Nov 21, 2024 4:39 pm
Forum: FiveWin for Harbour/xHarbour
Topic: A Problem exporting Report to Excel, Mr Rao, pls
Replies: 6
Views: 1803

A Problem exporting Report to Excel, Mr Rao, pls

Hi Friends:

As the header says, I have a problem exporting report to excel from the preview,
here is my code:


STATIC FUNCTION SinDet(oWindow)
LOCAL oReporte,gCpt
LOCAL oFont1,oFont2,oFont3
LOCAL oPen1,oPen2
LOCAL nLinea := 1
LOCAL nHasta := 0

LOCAL cTitulo := "Reporte de pagos a cuentas de ...
by marca
Tue Oct 01, 2024 12:35 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Create button in FastReport preview
Replies: 0
Views: 767

Create button in FastReport preview

... exactly like in the case of email, I can replace the call from their native email routine

and exchange it for mine.

If I could do the same when exporting to Excel, that would also solve my problem here. Could anyone tell me if this is a possibility?

I no longer know how to contact anyone at Fast.
by Antonio Linares
Wed Apr 24, 2024 7:14 am
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 4556

New FTDN April 2024 (FWH 24.04)

... oAdoError
- Enhanced: function Fw_OpenAdoConnection( ;
cConnStr, [lShowError], [@oErr], [nTimeOut] )

* fwxlsxlb.prg: fixed format while exporting datetime values with
fraction of seconds. Also increased column size to fit the
contents.

* FWMariaRowSet:
- Method ToExcel(): (1) Enclosed ...
by nageswaragunupudi
Thu Oct 19, 2023 6:00 am
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 16423

Re: Xlsxlibhb_ver2

Exporting multiple tables to different Sheets/Tabs of one single ExcelBook:
#include "fivewin.ch"

REQUEST DBFCDX

function Main()

local oXlsx

USE STATES SHARED NEW
USE WWONDERS SHARED NEW VIA "DBFCDX"
USE CUSTOMER SHARED NEW

if ( oXlsx := XlsxLibObj( "mydbfs.xlsx", Alias() ) ) != nil
WITH ...
by nageswaragunupudi
Thu Oct 19, 2023 4:04 am
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 16423

Re: Xlsxlibhb_ver2

... 4. Freeze Header Rows
5. Hide Zero values
6. Footer row with aggregage formulae

https://imagizer.imageshack.com/v2/xq70/923/CY8dZk.png

Exporting tables is very simple
#include "fivewin.ch"

function Main()

local oXlsx, aStruct, aGroup, aFooter, bRow, nRow

// Prepare DBF
USE CUSTOMER ...
by nageswaragunupudi
Thu Oct 05, 2023 10:12 am
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 16423

Re: Xlsxlibhb_ver2

... wwonders()

local cXlsx

USE C:\FWH\SAMPLES\WWONDERS VIA "DBFCDX"
cXlsx := DBF2XLSX()
ShellExecute( 0, "Open", cXlsx )

return nil


Exporting to xlsx is easy using this new function:
function DBF2XLSX( cFileXlsx )

local oBook, oSheet
local aStruct, bRow, nRow

if Empty( Alias ...