Search found 746 matches: buffer

Return to advanced search

Re: Most powerfull Xbrowser and PDF

... from a Word document. Identifies the document content area and removes surrounding borders. 6. BmpBufToJpg(cJpeg, cBuf) Converts a bitmap buffer (cBuf) into a JPEG file (cJpeg). Uses the FreeImage library for the conversion. 7. RTFToJpeg(cPDF) Converts an RTF (Rich Text Format) file to ...
by Otto
Mon Nov 18, 2024 10:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Most powerfull Xbrowser and PDF
Replies: 16
Views: 808

Re: Un raro problema

Quizas tengas que limpiar el buffer
:roll:
by sysctrl2
Tue Nov 12, 2024 6:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Un raro problema (SOLUCIONADO)
Replies: 9
Views: 287

Re: How to add 2d barcode to fastreport or fwh/harbour?

1. FUNCTION img2dbarcode() local h2d private hlib hLib = LOADLIBRARY( "zint.dll" ) h2d:=ZBarcode_Create() //// h2d should has datas: symbology,height,width,bitmap,... ?h2d:symbology // error: method symbology does not exsist ZBarcode_Encode_and_buffer(h2d,"abc45",5,0) //error: wi...
by ShumingWang
Tue Oct 15, 2024 1:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to add 2d barcode to fastreport or fwh/harbour?
Replies: 7
Views: 362

save the clipboard to array

I select a rectangular part (2x50) of the Excel sheetand save it to the clipboard .
How can I read data from a buffer into a two-dimensional array (2x50) ?
by Natter
Tue May 28, 2024 12:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: save the clipboard to array
Replies: 2
Views: 381

Best use of aSelected in Xbrowse

... This will go to the DBF and take new_bruto, than bruto etc... Will it always effectively read the dbf or take the buffer data ? Best option for this kind of process ? oDbf or Hash ? This will give me some idea of updating some program code. Thanks.
by Marc Venken
Tue May 14, 2024 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Best use of aSelected in Xbrowse
Replies: 1
Views: 296

Re: FW_SaveImage

... uImage1, uImage2, [cSide], [cType] ) --> newImage uImage1 and uImage2: can be hBitmap or any image-file or any image-buffer of any type. cSide: Can be "R" or "B". R for Right and B for bottom. Default Bottom cType: If the parameter is nil, the result ...
by nageswaragunupudi
Thu Feb 15, 2024 3:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_SaveImage
Replies: 8
Views: 958

Re: Error al Compilar con Fwh 2307 Bcc76 (Solucionado)

Puedes explicarnos como lo has solucionado ? gracias Agrege a mi prg este porcion #pragma BEGINDUMP #include <hbapi.h> #undef hb_retclen_buffer #undef hb_parldef void hb_retclen_buffer( char * szText, int nLen ) { hb_retclen( szText, nLen ); } int hb_parldef( int iParam, int iDefValue ) { ret...
by CARLOS ATUNCAR
Fri Jan 26, 2024 11:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al Compilar con Fwh 2307 Bcc76 (Solucionado)
Replies: 5
Views: 544

Error al Compilar con Fwh 2307 Bcc76 (Solucionado)

Proyecto: eFactura, Entorno: fwh2307: [1]:iLink32.Exe -Gn -aa -Tpe -s -v @eFactura.bcl Turbo Incremental Link 6.98 Copyright (c) 1997-2023 Embarcadero Technologies, Inc. Error: Unresolved external '_hb_parldef' referenced from E:\TOOLS\FWH2307\LIB\FIVEHC.LIB|STR2HEX Error: Unresolved external '_hb_r...
by CARLOS ATUNCAR
Thu Jan 25, 2024 4:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al Compilar con Fwh 2307 Bcc76 (Solucionado)
Replies: 5
Views: 544

Re: Inserting a string with CRLF into a single-line TGet.

... calls: CallWindowProc( ::nOldProc, ::hWnd, WM_PASTE, 0, 0 ) Now the Windows OS reads the text from the Clipboard and Pastes in the Get buffer. While doing so the Windows OS truncates the string from CRLF onwards. How and when do you apply to what text your logic of substituting CRLF ...
by nageswaragunupudi
Mon Dec 11, 2023 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting a string with CRLF into a single-line TGet.
Replies: 10
Views: 1457

Re: enviar mensajes a whatsapp, ¿posible solucion?

... parameter cImage can be 1. Image file name. eg: "foto.jpg/png/bmp/..." 2. Web address of an image. eg. 'https://.....jpg" 3. Image buffer. eg. MemoRead( "foto.jpg" )
by nageswaragunupudi
Fri Oct 27, 2023 4:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: enviar mensajes a whatsapp, ¿posible solucion?
Replies: 55
Views: 8497

Re: DBF . Commit

... in table and index files. 2. DBSKIP(0) just like DBGOTO( RECNO() ) writes all local modifications (if any) and then discards local record buffer so record has to be read again when any field is accessed. 3. DBCOMMIT() writes all local modifications in table and index files then it sends ...
by Carles
Mon Oct 23, 2023 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 5414

Re: DBF . Commit

but it is necessary to write the physical data on the hard disk Kindly reconsider. Unlike RDMSs, in the case of DBF, each client PC has its own buffer. In fact, each alias in the same application and each application on the same PC. Unless the contents of the buffer are written to the disk buffers ...
by nageswaragunupudi
Sun Oct 22, 2023 2:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 5414

Re: DBF . Commit

I think it's important to distinguish between the record buffer and the hard drive cache. Yes. But the documentation says it "hardwrites", same way like "commit". In any case, (x)Harbour can flush its buffers to the OS buffers and ...
by nageswaragunupudi
Sun Oct 22, 2023 11:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 5414

Re: DBF . Commit

I think it's important to distinguish between the record buffer and the hard drive cache.
by Otto
Sun Oct 22, 2023 11:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 5414

DBF . Commit

... because he commits after every data record update. Is it really necessary to always commit? Don't the database commands fetch the values from the buffer? Could you possibly clarify this situation? Thank you in advance, Otto https://carles9000.github.io/?search=M%C3%A9tricas Siempre ...
by Otto
Fri Oct 20, 2023 11:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 5414
Next

Return to advanced search