Page 1 of 1

df to dbf

Posted: Wed Jan 20, 2021 11:56 pm
by danielmaximiliano
hola a todos :
posiblemente tenga que hacer una aplicacion de manejo de varios proveedores de repuestos de motocicletas, la cual la lista de precios vengan en formato pdf y tengas que pasarlo de dbf para poder unificar estos articulos.
de esta forma unificar cada articulo y sacar los precios de cada uno de ellos y compararlos por precio. para elllo necesito convertir este pdf a formato dbf.
¿ hay alguna rutina para covertir un pdf a dbf o txt ? gracias

Hello everyone :
You may have to make a handling application from several motorcycle parts suppliers, which the price list comes in pdf format and you have to pass it from dbf to be able to unify these articles.
in this way, unify each item and get the prices of each one of them and compare them by price. for that I need to convert this pdf to dbf format.
Is there any routine to convert a pdf to dbf or txt? thanks

Re: df to dbf

Posted: Thu Jan 21, 2021 12:14 am
by luisvasquezcl
Hola Daniel. Creo que lo mejor es pedirles a tus clientes que te entreguen las listas en otro formato.
Salu2

Re: df to dbf

Posted: Thu Jan 21, 2021 12:45 am
by franco
I agree with luis,
I deal with motor cycle and snowmobile company`s. They are able to deliver in txt or csv. Then very easy to use.

Re: df to dbf

Posted: Thu Jan 21, 2021 12:58 am
by danielmaximiliano
encontre el GitHub algo que se puede utilizar.. igual cualquier ayuda es bienvenida

I found the GitHub something that can be used .. still any help is welcome

https://github.com/measuresforjustice/textricator

Re: df to dbf

Posted: Thu Jan 21, 2021 3:17 am
by AUGE_OHR
hi,

can you "mark" in PDF and "copy" it to Clipboard :?:

i use SumatraPDF to "mark" hole PDF and "copy" it to Clipboard from App.
than open Clipboard and "read" like CSV into Variable
using MLCOUNT() / MEMOLINE() to extract each line and remove "unwanted" sign

Re: df to dbf

Posted: Thu Jan 21, 2021 5:11 am
by Tiger
I am using attached tool to extract the pdf files to "txt" files ….

1st. I put all the pdf files to c:\prg\PDF_IN and create a pdf_2_txt.bat file

c:\prg\pdftext\textextract c:\prg\PDF_IN /To c:\prg\TMP ==> pdf_2_txt.bat

2nd. on HMG ==> ! pdf_2_txt.BAT // run the batch file to output txt files

then read those txt files one by one to get what you want ...