Search found 212 matches: fwrite

Return to advanced search

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: 793

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: 398

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: 2333

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: 2333

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: 2710

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: 942

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: 942

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: 279

Generar table temporal

... CadenaCon ) CATCH oErr MsginFo( "no puedo leer "+cSQLP ) showError( oErr ) wtxt = "errorge.txt" cHandeg = FCREATE ( wtxt ) FWrite ( cHandeg, cSQLP + chr( 13 ) + chr( 10 ) ) fclose(cHandleg) RETURN NIL END TRY Saludos Jorge
by jpcavagnaro
Thu Aug 04, 2022 2:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Generar table temporal
Replies: 3
Views: 347

Re: Facturacion TicketBai

... favor, puedes indicarme como realizas el envío con curl salida := Respuesta+'.gz' headers:= Respuesta+'.txt' m := fcreate("LROE.bat",0) FWrite (m, 'c:\gerogest\curl -X POST -# --connect-timeout 60 -m 60 -s -S -L --cert ./dispositivo.pem --header "Content-Type: application/octet-stream" ...
by landaga
Wed Dec 15, 2021 7:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Facturacion TicketBai
Replies: 8
Views: 1223

Re: Guardar y Recuperar Imagen Tdolphin

... y luego para recuperarlo, lo descomprimo: nHandle:=FCreate(cTempZip) FWrite(nHandle,bFOTOS:fotografia,Len(bFOTOS:fotografia)) FClose(nHandle) aFiles:=hb_GetFilesInZip(cTempZip,.t.) Hb_UnZipFile(cTempZip,,.T.,,cTemp,aFiles[1],NIL) ...
by TOTOVIOTTI
Wed Nov 10, 2021 12:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Guardar y Recuperar Imagen Tdolphin
Replies: 3
Views: 442

Re: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS

... con el Nombre TRA.xml If( ( nHandle := fcreate( cPath+'TRA.xml', 0 ) ) == -1 ) MsgStop( 'NO se pudo crear TRA.xml',' ERROR' ) Return( .F. ) Else fWrite( nHandle, cXml ) fClose( nHandle ) End cCmdSign := 'openssl smime' +; ' -sign' +; ' -in ' + cPath+ 'TRA.xml' +; // Archivo XML a Firmar ' -out ...
by dhf27
Tue Sep 28, 2021 12:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS
Replies: 43
Views: 4987

Re: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS

... con el Nombre TRA.xml If( ( nHandle := fcreate( cPath+'TRA.xml', 0 ) ) == -1 ) MsgStop( 'NO se pudo crear TRA.xml',' ERROR' ) Return( .F. ) Else fWrite( nHandle, cXml ) fClose( nHandle ) End cCmdSign := 'openssl smime' +; ' -sign' +; ' -in ' + cPath+ 'TRA.xml' +; // Archivo XML a Firmar ' -out ...
by rterraz
Thu Sep 23, 2021 1:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS
Replies: 43
Views: 4987

problemas al linkear

Hola. usando harbour y Fwh la ultima. Me arroja estos errores: [1]:iLink32.Exe -Gn -q -aa -Tpe -x @testMaria.bcl Error: Unresolved external 'WinMain' referenced from X:\HARB\BCC7\LIB\C0W32.OBJ Error: Unresolved external '_hb_vmProcessSymbols' referenced from X:\PROYECTOS\TEST\MARIA\OBJ\MARIA.OBJ Err...
by goosfancito
Thu Feb 04, 2021 9:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: problemas al linkear
Replies: 6
Views: 440
Next

Return to advanced search