Search found 92 matches: sheet

Searched query: sheet

by nageswaragunupudi
Tue Dec 24, 2024 4:32 am
Forum: FiveWin for Harbour/xHarbour
Topic: New: Read/Edit/Save XLSX files without Excel/ADO
Replies: 2
Views: 286

New: Read/Edit/Save XLSX files without Excel/ADO

... and also saving the changes (to another xlsx file) without Excel or ACE OLEDB installed on the PC.

Simple Usage:
FW_ShowXLSX( cFileXlsx, [cSheet] ) // --> oXlsx object

Examples:
FW_ShowXLSX( "customer.xlsx" )
https://imagizer.imageshack.com/v2/xq70/922/4TnfrA.png

FW_ShowXLSX ...
by Silvio.Falconi
Tue Jul 02, 2024 8:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse adata comparison
Replies: 0
Views: 561

Xbrowse adata comparison

... when we have to request material we have to request it from different suppliers, when I have the suppliers' estimates I use Excel and in each sheet I insert the order-type estimates for each supplier. each supplier must create a quote for the same material.

I therefore thought of converting ...
by hua
Sun Mar 17, 2024 8:05 am
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin Wiki
Replies: 9
Views: 2488

Re: Fivewin Wiki

Hi Antonio,
I just want to check code snippets on how to add new sheet in Excel and how to select a sheet based on name or number
by Silvio.Falconi
Mon Jan 15, 2024 11:04 am
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 1352

Re: nYoffset and nXoffset

... and yOffset to 120,150 because I use the HP laserjet printer
you imagine that if my program is used in another school
with another printer that I don't know the parameters are wrong and the print comes off the sheet
I can't have any worries like that, the program should always work the same way
by Silvio.Falconi
Thu Nov 23, 2023 4:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Calculate total pages
Replies: 32
Views: 8439

Re: Calculate total pages

Marco,
with the tprinter class it is easy to calculate the number of pages, just set how many rows you want per sheet and then divide the total archive with the rows and you will have the number of pages, but with the treport class I cannot do it, that is, it is displayed to me the page number but not ...
by Silvio.Falconi
Wed Nov 08, 2023 10:07 am
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 rpreview problems
Replies: 7
Views: 876

Fwh 23.10 rpreview problems

when double on rpreview not make zoom and I have this error

Image



before if I double clicked on the sheet the preview showed the zoomed page and you couldn't even see the lupa cursor
by nageswaragunupudi
Thu Oct 19, 2023 4:04 am
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 14349

Re: Xlsxlibhb_ver2

This example demonstrates:

1. Image Brush
2. Sheet name customized
3. Group Headers
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 ...
by Jimmy
Mon Sep 04, 2023 9:31 pm
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 5948

Re: DBF to Excel Sheet, without Excel, using ADO ?

hi,
I am not able to write or read images to/from excel files using ADO.
Is it possible?
have not try ADO Type adTypeBinary yet

---

have found Sample which "read"
objStream := CreateObject( "ADODB.Stream" )
objStream:Open()
objStream:Type := 1 //adTypeBinary
objStream:LoadFromFile( cFile ...
by Jimmy
Mon Sep 04, 2023 9:27 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Announcing DrXlsx 1.0 by Charles Kwon
Replies: 34
Views: 11273

Re: Announcing DrXlsx 1.0 by Charles Kwon

hi,

do you have a Sample how to "insert" Image into Excel Sheet using DrXlsx LIB :?:

/* Insert an image. */
worksheet_insert_image( worksheet, 1, 2, "hb_logo.png" )

/* Insert an image with options. */
options := {"x_scale" => .5, "y_scale" => .5 }
worksheet_insert_image_opt( worksheet, CELL ...
by nageswaragunupudi
Sun Sep 03, 2023 9:39 pm
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 5948

Re: DBF to Excel Sheet, without Excel, using ADO ?

I am not able to write or read images to/from excel files using ADO.
Is it possible?
by nageswaragunupudi
Wed Aug 30, 2023 2:23 pm
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 4855

Re: not ISOEM(), ISANSI() or IsUTF8()

YES this "seems" to work, no Error in LOG :D

but when try to open Excel Sheet i got Warning and all Type "C" are empty ... :shock:



This is the test I made.
#include "fivewin.ch"

function Main()

local cOemHex := "8494818E999AE1"
local cOemText, c, oXlsx
local cFileXls := "UMLDRXL.XLSX ...
by Jimmy
Wed Aug 30, 2023 8:35 am
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 4855

Re: not ISOEM(), ISANSI() or IsUTF8()

... fieldGet( n ) ) ) )
Please use UML_OEMTOANSI() but not OemToAnsi()
YES this "seems" to work, no Error in LOG :D

but when try to open Excel Sheet i got Warning and all Type "C" are empty ... :shock:

---

i have compare
cText := UTF16toUTF8( strToWide( UML_OEMTOANSI( cText ) ) )
vs ...
by nageswaragunupudi
Wed Aug 30, 2023 7:29 am
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 4855

Re: not ISOEM(), ISANSI() or IsUTF8()

i like to get a working Excel Sheet with German "Umlaute" using DrXlsx
Suggested:
OEM -> ANSI -> UTF8
For ansi to utf8

Code: Select all | Expand

UTF16toUTF8( strToWide( cAnsi ) )
So we can use:

Code: Select all | Expand

UTF16toUTF8( strToWide( UML_OEMTOANSI( fieldGet( n ) ) ) )
Please use UML_OEMTOANSI() but not OemToAnsi()
by Jimmy
Wed Aug 30, 2023 6:08 am
Forum: FiveWin for Harbour/xHarbour
Topic: not ISOEM(), ISANSI() or IsUTF8()
Replies: 34
Views: 4855

Re: not ISOEM(), ISANSI() or IsUTF8()

... T. )
USE (cDBF) // CODEPAGE cCodepage EXCLUSIVE
now please try to "export" to Excel using DrXlsx, NOT XBROWSE

i like to get a working Excel Sheet with German "Umlaute" using DrXlsx

---

when you ask me for STRTOHEX() i got
xValue = "„" STRTOHEX(xValue) = "84" ASC(xValue) = 132
xValue ...
by Jimmy
Mon Aug 28, 2023 1:16 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Announcing DrXlsx 1.0 by Charles Kwon
Replies: 34
Views: 11273

Re: Announcing DrXlsx 1.0 by Charles Kwon

... thx

it is a "normal" that RAM is "limited" for 32 Bit App
i have "hope" it does "write" when have "read" but all seems to go to RAM

when it "crash" there is no XLSx, you need to "close" to "write" Excel Sheet

Question : is it possible to use a Thread to "write" what have been "read" before :?: