Search found 405 matches: csv

Return to advanced search

Re: Data exchange between PC and Android device on the same loca

... "Print Report: Verkauf "); fclose($Report); The FIVEWIN program prepares all the data for the report and stores the data in a CSV file. PHP program is waiting: while ($x <= 2) { sleep(1); if (file_exists($filename . "csv")) { echo "filename:" . $filename ...
by Arturo Lopesoria
Fri Feb 23, 2024 11:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Data exchange between PC and Android device on the same loca
Replies: 17
Views: 793

Re: USB reading/writing as Com port

... my handscanner, FW can read this and it is also on a USB, but I suppose that this is not the same. So If Coolterm is needed, I will have a txt/csv file that is updated very fast in realtime, and I can put my Arduino data into the file. How will FW capture the data from that file (this is updated) ...
by Marc Venken
Thu Feb 08, 2024 8:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: USB reading/writing as Com port
Replies: 3
Views: 221

Creating a CSV file from these forums

These forums as a DBF and FPT files: https://huggingface.co/datasets/fivetech/forums_dbf/tree/main forums_csv.prg #include "FiveWin.ch"request dbfcdxfunction Main()    local cPostsCSV := "topic,text" + Chr( 10 )    USE posts VIA "dbfcdx"  ...
by Antonio Linares
Thu Jan 25, 2024 6:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a CSV file from these forums
Replies: 0
Views: 576

Re: phpBB to LLM

This is the type of csv file that we have to generate from a DBF: customer.csv ID,FIRST,LAST,STREET,CITY,STATE,ZIP,HIREDATE,MARRIED,AGE,SALARY,NOTES 1,Homer,Simpson,32179 Maiden Lane,Springfield,IL,20503-8202,1992-09-18,True,50,5900.0,This ...
by Antonio Linares
Fri Dec 22, 2023 6:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4690

Re: WooCommerce

Silvio, Then you will need to use the API. Uploading a csv will always need intervention of customer. At least in my webshop. I suppose you have the Token from the shop in order to connect. Here is a small sample of connection via API. WooCommerce seems ...
by Marc Venken
Fri Oct 20, 2023 8:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WooCommerce
Replies: 3
Views: 285

WooCommerce

... would need the same thing for orders placed on the site then Sending articles and receiving orders Obviously I understood that I have to create a csv file and I found the structure of how it should be as a reference for the structure of the csv file this page for articles https://woocommerce.com/document/product-csv-import-suite-column-header-reference/?quid=61d0a20b3db888521bf16e9a1f95f7cc ...
by Silvio.Falconi
Fri Oct 20, 2023 7:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WooCommerce
Replies: 3
Views: 285

Woocommerce

... servirebbe la stessa cosa per gli ordini effettuati sul sito quindi Invio articoli e ricezione ordini Ovviamente ho capito che devo creare un file csv ed ho trovato la struttura di come deve essere come riferimento per la struttura del file csv questa pagina per gli articoli https://woocommerce.com/document/product-csv-import-suite-column-header-reference/?quid=61d0a20b3db888521bf16e9a1f95f7cc ...
by Silvio.Falconi
Fri Oct 20, 2023 7:08 am
 
Forum: All products support
Topic: Woocommerce
Replies: 0
Views: 4213

Re: Save csv file in utf8 with BOM

Hello Cristobar. I already solved it by applying the header to utf8 BOM Method N_SignoCepLayout_BuildAll(f_cFileCvsSalva)   Local lc_cFileCvsConteudo := ""   Local lc_cUtf8Header := ""   ::N_SignoCepLayout_CabecalhoBuild()   ...
by Giovany Vecchi
Thu Sep 07, 2023 11:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Save csv file in utf8 with BOM
Replies: 2
Views: 177

Re: Save csv file in utf8 with BOM

What characters do you add in the header? Please, try .../...   lc_cFileCvsConteudo     := ::cCabecalhoCampos //+ CRLF   lc_cFileCvsConteudo     += hb_StrToUTF8(::cTxtOcorrenciasAll)   hb_MemoWrit(f_cFileCvsSalva,lc_cFileCvsConteudo)&...
by cnavarro
Thu Sep 07, 2023 4:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Save csv file in utf8 with BOM
Replies: 2
Views: 177

Save csv file in utf8 with BOM

The characters are in the utf8 standard, but when I import it into a third-party system, it says that the file is not utf8. Does anyone have a solution? Method N_SignoCepLayout_BuildAll(f_cFileCvsSalva)   Local lc_cFileCvsConteudo := ""   ::N_SignoCepLayout_Cabe...
by Giovany Vecchi
Wed Sep 06, 2023 7:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Save csv file in utf8 with BOM
Replies: 2
Views: 177

API to download google sheet in csv form

Does anyone has a code snippet to connect to and download a google sheet in csv form?
TIA
by hua
Mon Jun 26, 2023 3:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: API to download google sheet in csv form
Replies: 0
Views: 163

Re: Exportar datos MySql a Excel con FiveWin

José: Un archivo .CSV lo abres con excel sin que el usuario haga nada extraordinario. excel se lo traga todito. Te sugiero hagas una pequeña prueba. También tendrás que permitir en tu aplicación la inversa, de excel a Sql o DBFs Saludos ...
by JoseAlvarez
Wed Jun 14, 2023 2:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Exportar datos MySql a Excel con FiveWin
Replies: 8
Views: 398

Re: Exportar datos MySql a Excel con FiveWin

José:

Un archivo .CSV lo abres con excel sin que el usuario haga nada extraordinario.
excel se lo traga todito.

Te sugiero hagas una pequeña prueba.

También tendrás que permitir en tu aplicación la inversa, de excel a Sql o DBFs

Saludos
by Armando
Wed Jun 14, 2023 2:12 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Exportar datos MySql a Excel con FiveWin
Replies: 8
Views: 398

Re: Exportar datos MySql a Excel con FiveWin

... renglones y columnas va a ser lento el proceso, sobre todo si quieres dar formato a la hoja de excel. La alternativa es exportar a una archivo .CSV, prácticamente es igual a crear un archivo TXT, es rapidísimo pues no lleva formato alguno. Saludos a ambos Hola Armando, saludos. Sí, lo que dices ...
by JoseAlvarez
Tue Jun 13, 2023 1:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Exportar datos MySql a Excel con FiveWin
Replies: 8
Views: 398

Re: Exportar datos MySql a Excel con FiveWin

... renglones y columnas va a ser lento el proceso, sobre todo si quieres dar formato a la hoja de excel. La alternativa es exportar a una archivo .CSV, prácticamente es igual a crear un archivo TXT, es rapidísimo pues no lleva formato alguno. Saludos a ambos
by Armando
Tue Jun 13, 2023 2:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Exportar datos MySql a Excel con FiveWin
Replies: 8
Views: 398
Next

Return to advanced search