Search found 446 matches: memoread

Return to advanced search

Re: Capacidad de variable de memoria HARBOUR

carlos vargas wrote:En teoría límite de memoria, yo he levantado con memoread archivos de más de 16MB en variables de memorias sin problemas.


16mb para una variable es bastante. Gracias carlos por la información.
by JoseAlvarez
Wed Mar 27, 2024 12:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Capacidad de variable de memoria HARBOUR
Replies: 8
Views: 1640

Re: Capacidad de variable de memoria HARBOUR

En teoría límite de memoria, yo he levantado con memoread archivos de más de 16MB en variables de memorias sin problemas.
by carlos vargas
Wed Mar 27, 2024 4:28 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Capacidad de variable de memoria HARBOUR
Replies: 8
Views: 1640

Re: Fulltext-Search

If you want to read the result.txt with memoread you need to use : Out-File -FilePath "search_results.txt" -Encoding ASCII' cText :=  'Get-ChildItem -Path ' + ALLTRIM( h['seachpath'] ) + ' -Recurse -Filter ' + ALLTRIM(h['seachpattern']) ...
by Otto
Mon Mar 18, 2024 8:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fulltext-Search
Replies: 6
Views: 1247

Re: How to include hbCurl?

Marc, you can redirect to a file: clogrooms and then read with memoread. Regards, Otto DCOM := 'cmd /c "' +; cCurlPath + 'curl.exe -u username:password -i -k -F "fileToUpload=@' +; aSrc[I] + '" -F "uploadDirectory=' + cuploadDirectory ...
by Otto
Fri Mar 08, 2024 10:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to include hbCurl?
Replies: 13
Views: 2950

Re: Grabar imagen en tabla mysql

... PUBLIC PROGNOM:=APROG[1,1] PUBLIC PROGTAM:=APROG[1,2] PUBLIC PROGFEC:=APROG[1,3] PUBLIC PROGHRS:=APROG[1,4] * cFileG := StrToHex(MemoRead(cFILE)) * cCMDVAL :="" cCmdSql := "INSERT INTO PROGRAMA(TIPO,ARCHIVO,NOMBRE,FECHA,TAMA,HORA) VALUES( " cCMDVAL := cCMDVAL+"'"+cTIPO ...
by Marco Augusto
Fri Jan 19, 2024 1:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Grabar imagen en tabla mysql
Replies: 5
Views: 401

Re: FWH or harbour function support CRC?

Antonio Linares wrote:? hb_CStr( hb_SHA256( hb_memoRead( "filename.zip" ), nil ) )


Dear Antonio,

It's not work.
by richard-service
Fri Jan 12, 2024 6:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH or harbour function support CRC? ( Solved )
Replies: 16
Views: 1739

Re: FWH or harbour function support CRC?

? hb_CStr( hb_SHA256( hb_memoRead( "filename.zip" ), nil ) )
by Antonio Linares
Thu Jan 11, 2024 9:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH or harbour function support CRC? ( Solved )
Replies: 16
Views: 1739

Re: SHA256 CRC

Dear Philippe,

? hb_CStr( hb_SHA256( hb_memoRead( "filename.zip" ), nil ) )
by Antonio Linares
Fri Nov 03, 2023 8:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SHA256 CRC
Replies: 2
Views: 215

Re: Ayuda - Clase p/envio de msg,file por whatsapp - GREENAPI

Buen dia Carlos

Consideraste usar el hb_memoread() para que el archivo no llegue corrupto.

manda['body']:= "data:application/pdf;base64,"+ hb_base64encode( hb_memoread(formato))


Saludos

Erick Almanza
Panama
by Erick Almanza
Mon Oct 30, 2023 2:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda - Clase p/envio de msg,file por whatsapp - GREENAPI
Replies: 8
Views: 626

Re: enviar mensajes a whatsapp, ¿posible solucion?

... 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: 4483

Re: Convert a word file to pure txt

Programmatically Open the word file, then use the Save As method and then choose Plain Text. Now you read this text file via Memoread and do whatever you want. Another way is to read the entire text contents of a word document to a memory variable and then use it as per your requirement ...
by anserkk
Sat Oct 14, 2023 10:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Convert a word file to pure txt
Replies: 1
Views: 180

Convert a word file to pure txt

Hi,

How can convert a word file to txt so i can do searches via memoread().

Thank you!
by elvira
Sat Oct 14, 2023 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Convert a word file to pure txt
Replies: 1
Views: 180

Re: Como Separar lineas en Archivo TXT SOLUCIONADO

Gracias le encontre la solucion

aLines := hb_ATokens( MemoRead( xFile ), Chr(10))
For a:=1 To Len( aLines )
?aLines[a]
Next
by CARLOS ATUNCAR
Mon Sep 25, 2023 12:01 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como Separar lineas en Archivo TXT SOLUCIONADO
Replies: 1
Views: 259

Re: Actualizar xBrowse con un Clic del ratón?

Gracias por su tiempo Mr. Rao Esto solucionó el error en tiempo de ejecucion return IfNil( cContents, "" ) local cDefault := MEMOREAD( "c:\fwh\bitmaps\sea.bmp" ) AEval( aCols, { |a,i| a[ 4 ] := WebPageContents( a[ 4 ] ), ; If( Empty( a[ 4 ] ), a[ 4 ] := cDefault, nil ) ...
by cmsoft
Sat Aug 19, 2023 12:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualizar xBrowse con un Clic del ratón?
Replies: 22
Views: 1357

how store Image into Database

... Type for DBF ? "M" or "V" or ? which Type for SQL ? "BLOB" or ? when store "Image" into DBF using HEX or MEMOREAD ? SQL using HEX with "pre-FIX" ? when XBROWSEr / EDIT how to prevent FIELD from "type into" Image FIELD ... how to "Drop ...
by Jimmy
Sun Jul 23, 2023 10:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how store Image into Database
Replies: 3
Views: 308
Next

Return to advanced search

cron