Search found 218 matches: fwrite

Return to advanced search

Re: España: Normativa sancionadora sistemas informáticos

... el hash con el ejemplo que viene en la documentación de la Agencia Tributaria. Lo hago utilizando todo en una cadena continua de caracteres FWrite( nMan, Upper( HB_SHA256( "IDEmisorFactura=89890001K&NumSerieFactura=12345678/G33&FechaExpedicionFactura=01-01-2024&TipoFactura=F1&CuotaTotal=12.35&ImporteTotal=123.45&Huella=&FechaHoraHusoGenRegistro=2024-01-01T19:20:30+01:00" ...
by Julio Cepeda
Fri Nov 15, 2024 5:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: España: Normativa sancionadora sistemas informáticos
Replies: 331
Views: 53377

Re: MySql and Encryption

Hello friends, For my DBF files, I'm testing an approach like this. I initially wanted to use AES (fwrite()), but then I wouldn't have full-text search capabilities, and I think FTS wouldn't work even with TDE. This type of encryption I use now isn't entirely secure, but ...
by Otto
Wed Oct 16, 2024 12:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MySql and Encryption
Replies: 6
Views: 496

Re: GPF with FW August 2024

... RETURN .F. ENDIF cText := MemoRead( cFile ) cSchema := 'http:\\www.nipeservice.it\FS\FoglioStile.xsl' nFile := FCreate( cTmpFile, FC_NORMAL ) IF FWrite( nFile, cText ) <> Len( cText ) ? "Errore scrittura file: " + cTmpFile + " " + FError() RETURN NIL ENDIF IF .NOT. FClose( ...
by karinha
Fri Oct 04, 2024 12:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GPF with FW August 2024
Replies: 32
Views: 873

Re: GPF with FW August 2024

... ) //cSchema := 'FoglioStileAssoSoftware.xsl' cSchema := 'http:\\www.nipeservice.it\FS\FoglioStile.xsl' nFile := FCreate( cTmpFile, FC_NORMAL ) IF FWrite( nFile, cText ) <> Len( cText ) ? "Errore scrittura file: " + cTmpFile + " " + FError() RETURN nil ENDIF IF .NOT. Fclose( ...
by Maurizio
Fri Oct 04, 2024 6:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GPF with FW August 2024
Replies: 32
Views: 873

GPF with FW August 2024

... //ELSE // cSchema := 'http:\\www.nipeservice.it\FS\FoglioStileAssoSoftware.xsl' //endif nFile := FCreate( cTmpFile, FC_NORMAL ) IF FWrite( nFile, cText ) <> Len( cText ) ? "Errore scrittura file: " + cTmpFile + " " + FError() RETURN nil ENDIF IF .NOT. Fclose( ...
by Maurizio
Thu Oct 03, 2024 1:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GPF with FW August 2024
Replies: 32
Views: 873

Re: Europen Elektronic Bill

... <cbc:Note>BT-4</cbc:Note> <cbc:DocumentCurrencyCode>BT-5</cbc:DocumentCurrencyCode> Some of you will be using textinto or FWrite not ??
by Marc Venken
Tue Jul 30, 2024 2:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Europen Elektronic Bill
Replies: 12
Views: 2499

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

... $Report = fopen( $filename . "txt", "w"); if ($Report == false) { echo ("Error in opening new Report"); exit(); } fwrite($Report, "Print Report: Verkauf "); fclose($Report); The FIVEWIN program prepares all the data for the report and stores the data in ...
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: 1962

Re: Grabar imagen en tabla mysql

... ENDIF RETURN(.T.) PARA RECUPERAR FUNCTION EDATOS(cDAT,cNOM) cARCH=HexToStr(cDAT) ASALIDA:=".\"+cNOM hFile := FCreate(asalida) FWrite( hFile, cARCH) FClose( hFile ) RETURN NIL
by Marco Augusto
Fri Jan 19, 2024 1:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Grabar imagen en tabla mysql
Replies: 5
Views: 797

Re: DBF . Commit

... that there is a similar function HB_FCOMMIT( <filehandle> ) function available to us when we are using raw file functions like fCreate(), fWrite() etc. We can use hb_fcommit(handle) to ensure flushing all buffers to disk. Mr. Enrico was clear. He said "It is not necessary for the ...
by nageswaragunupudi
Mon Oct 23, 2023 4:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 5329

Re: DBF . Commit

... Unlock is flushing data and index buffers to the disk buffers of the Windows OS. Ultimately any RDD finally writes the data to the disk using fwrite (or similar function). Harbour can write only to the file buffer of Windows OS, but can not force the OS to physically write to the disk. All ...
by nageswaragunupudi
Sun Oct 22, 2023 2:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 5329

Re: EXPORTAR DATOS DESDE FW A PRESTASHOP

... provoca que al importarse en PRESTASHOP genera un registro falso, sin datos. Alguien sabe como evitarlo o como eliminarlo ? Lo he intentado con FWRITE() sin exito. Gracias
by JESUS MARIN
Thu Dec 29, 2022 4:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: EXPORTAR DATOS FW A PRESTASHOP [SOLUCIONADO PROBLEMA IMAGEN]
Replies: 32
Views: 4741

Re: Xbrowse to Html

... fw code. that changes for every record. //========================= cFile = "c:\maveco\website\catalog.htm" FCatalog := FCREATE(cFile) FWRITE(FCatalog, MEMOREAD("c:\maveco\html\catbase.htm") + chr(10) ) // This file contains the first lines of the html file that are always ...
by Silvio.Falconi
Thu Oct 06, 2022 1:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse to Html
Replies: 16
Views: 1456

Re: Xbrowse to Html

... fw code. that changes for every record. //========================= cFile = "c:\maveco\website\catalog.htm" FCatalog := FCREATE(cFile) FWRITE(FCatalog, MEMOREAD("c:\maveco\html\catbase.htm") + chr(10) ) // This file contains the first lines of the html file that are always ...
by Marc Venken
Thu Oct 06, 2022 12:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse to Html
Replies: 16
Views: 1456

Re: Dividir archivo de texto

Holá, usando FWRITE() y un FOR..NEXT no funciona? usando un .BAT: https://social.technet.microsoft.com/Forums/pt-BR/25f05aab-374a-41f4-be82-cb5c4114bd47/dividir-arquivo-em-dois-um-que-contm-determinada-string-outro-no?forum=scriptadminpt ...
by El Loco
Fri Sep 16, 2022 3:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Dividir archivo de texto
Replies: 2
Views: 368
Next

Return to advanced search