Search found 362 matches: extract

Return to advanced search

Ayuda con Mensaje Error irrecuperable 9009: hb_xrealloc

Hello Fivewinners. Hola Fivewinners Need to open 160.000+ xml files and extract some info Necesito abrir mas de 160.000 archivos xml y sacar informacion I use tXmlDocument class Uso la clase TxmlDocument I have the file names in an Array Tengo los nombres de ...
by Adolfo
Wed Mar 20, 2024 7:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con Mensaje Error irrecuperable 9009: hb_xrealloc
Replies: 4
Views: 843

Help with HB_REALLOC ERROR 9009

Hello Fivewinners. Hola Fivewinners Need to open 160.000+ xml files and extract some info Necesito abrir mas de 160.000 archivos xml y sacar informacion I use tXmlDocument class Uso la clase TxmlDocument I have the file names in an Array Tengo los nombres de ...
by Adolfo
Wed Mar 20, 2024 7:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help with HB_REALLOC ERROR 9009
Replies: 5
Views: 1099

Re: Problem with FiveWin and PDF995 on Windows 11.

... Always the best way to know what libraries are to be linked, please open fwh\samples\buildx.bat and see the path and libraries included. This is extract from buildx.bat echo %hdirl%\hbhpdf.lib + >> b32.bcecho %hdirl%\libharu.lib + >> b32.bc  and %hdirl% means xharbour\lib ...
by leandro
Thu Feb 15, 2024 3:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FiveWin and PDF995 on Windows 11.
Replies: 29
Views: 1214

Re: Problem with FiveWin and PDF995 on Windows 11.

... Always the best way to know what libraries are to be linked, please open fwh\samples\buildx.bat and see the path and libraries included. This is extract from buildx.bat echo %hdirl%\hbhpdf.lib + >> b32.bcecho %hdirl%\libharu.lib + >> b32.bc  and %hdirl% means xharbour\lib I posted ...
by nageswaragunupudi
Thu Feb 15, 2024 1:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FiveWin and PDF995 on Windows 11.
Replies: 29
Views: 1214

Re: phpBB to LLM

I also generate a DBF based on Rao and Uwe code.

I only extract the source samples from all the posts. Offline I then search the dbf for keywords of any kind. It helped me many many times in finding solutions because It is showing sample code.
by Marc Venken
Thu Dec 21, 2023 8:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4687

Re: phpBB to LLM

... DBF of Fivewin Forum i use my phpBB "Codebox" Reader based on Idea of Uwe https://www.hmgforum.com/viewtopic.php?t=7281 extract "Codebox" Tag is not my Problem, it are HTML "Sign" which i try to STRTRAN() it work so far with CODE but in "Body" ...
by Jimmy
Thu Dec 21, 2023 12:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4687

Re: Lectura del TEXTO desde archivo PDF

hi,

as i can say you need to extract TEXT from PDF

there are Tools, like xPDFreader, which can extract TEXT from PDF
https://www.xpdfreader.com/download.html
---
you can use Source of xPDFreader and try to use it direct under harbour
by Jimmy
Tue Dec 19, 2023 1:23 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Lectura del TEXTO desde archivo PDF
Replies: 3
Views: 405

Re: Help splitting up a character address string

... to load the Excel file. You may choose to use libraries like XLSXREAD or Office Automation Libraries to read Excel files. 2. Parse the Excel data: Extract the data from the Excel file, specifically from the worksheet that contains the addresses. You can iterate over the rows and columns of the ...
by frose
Wed Nov 15, 2023 11:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 602

Re: Help splitting up a character address string

... cZip LOCAL nPos1, nPos2 // Find the position of the commas nPos1 := At(",", cAddress) nPos2 := At(",", cAddress, nPos1 + 1) // Extract the street, city, state, and zip cStreet := SubStr(cAddress, 1, nPos1 - 1) cCity := SubStr(cAddress, nPos1 + 2, nPos2 - nPos1 - 2) cState := ...
by Otto
Wed Nov 15, 2023 7:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 602

Re: Help splitting up a character address string

... code ChatGPT To split the address string in Harbour, a language similar to Clipper, you can use the SubStr() and At() functions to locate and extract the specific parts of the address. Harbour's string handling functions are quite powerful for these types of operations. Here's how you can ...
by Otto
Wed Nov 15, 2023 7:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 602

Include exe file as a resource (solved)

... "myapp.exe" to their computer and runs it, it would check if "pdftopng.exe" is in the program's folder, and if it's not, extract it to be used. Thank you and regards, Alvaro
by alvaro533
Thu Oct 19, 2023 1:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Include exe file as a resource (solved)
Replies: 3
Views: 264

Re: FW: Funcionalidad para Mysql y Mariadb

Here you have a little and complete sample (https://www.mediafire.com/file/votclrsfpsiv6fm/DTB.zip/file). Could you download and extract to C:\DTB, try mysqlmbd.exe, and please let we know if is working.
by vilian
Fri Jul 21, 2023 1:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FW: Funcionalidad para Mysql y Mariadb
Replies: 20
Views: 1992

Re: *.docx files and TRichEdit5

Thanks ! Does this mean I can't use VBA in RichEdit5?
For example: I highlighted some words/phrases in color. Then I need to extract these words/phrases from the RichEdit5 document. How can this be done ?
by Natter
Sat Jul 01, 2023 12:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: *.docx files and TRichEdit5
Replies: 3
Views: 339

Re: MariaDb delete

... this thread, instead of traversing the complete table checking for eof(), you would do this: DELETE FROM <tablename> ;   Suppose you want to extract certain records from the table based on certain condition. With our traditional ISAM you would do this: WHILE !odbf:eof()  //or some ...
by reinaldocrespo
Fri Jun 02, 2023 2:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDb delete
Replies: 6
Views: 390

Re: WorkSpaceList()

Mr. Marc
This is an extract from "errorsysw.prg"
by nageswaragunupudi
Thu Jun 01, 2023 7:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WorkSpaceList()
Replies: 6
Views: 268
Next

Return to advanced search