Search found 1655 matches: memo

Return to advanced search

Re: DBF . Commit

... Thanks a lot Mr. Enrico. Sorry, I did not know about this before. Yes, I see the difference in the timestamps of the dbf file (also indexes and memo files, if exist) Just for information to all: COMMIT executes the WinAPI function FlushFileBuffers( handle ) thereby ensuring that all the data ...
by nageswaragunupudi
Mon Oct 23, 2023 4:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2346

Re: enviar mensajes a whatsapp, ¿posible solucion?

Buenas

Una Pregunta:

Si como Variable de texto utilizo un Get memo, como lo hago para que me ponga las lineas según las voy escribiendo en dicho get?; ya que escribo en éste campo las lineas separadas, pero al enviar, me lo hace con todas las líneas seguidas.

Gracias
by JoseLuis
Wed Oct 18, 2023 10:52 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: enviar mensajes a whatsapp, ¿posible solucion?
Replies: 55
Views: 4489

Re: Xlsxlibhb_ver2

... to CUSTOMER.XLSX https://imagizer.imageshack.com/v2/xq70/922/SVFurI.png Exporting WWONDERS.DBF to WWONDERS.XLSX with IMAGES in the Memo Fields: https://imagizer.imageshack.com/v2/xq70/923/WgYC4s.png
by nageswaragunupudi
Thu Oct 05, 2023 10:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xlsxlibhb_ver2
Replies: 57
Views: 9023

FWH2309: New function FW_StitchImages()

... cImage ) https://imagizer.imageshack.com/v2/xq70/924/36RnIA.png Now, this cImage can be saved to a file or to a memo field of any database.
by nageswaragunupudi
Fri Sep 08, 2023 12:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH2309: New function FW_StitchImages()
Replies: 0
Views: 278

error TXBROWSE:CARGOS

... ) } oRApertur:bKeyDown := { | nKey | VeoReg(, 1, oRApertur, nkey, "RApertur" ) } redefine say oObjetivo var xObjetivo memo id 4001 of ofld1:aDialogs[ 2 ] update redefine get oAlcance var xAlcance memo id 132 of ofld1:aDialogs[ 2 ] update redefine get oManuales var xManuales ...
by jpcavagnaro
Wed Aug 30, 2023 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: error TXBROWSE:CARGOS
Replies: 3
Views: 282

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

Then, you can copy any text any where and then press Ctrl-V in the active cell. The value is pasted and browse updated.
This applies even for pasting images in memo fields.

Aprovechado el hilo, como debería definirse si quiero hacerlo con un Xbrowse con Array?
by cmsoft
Fri Aug 18, 2023 3:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualizar xBrowse con un Clic del ratón?
Replies: 22
Views: 1384

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

Code: Select all  Expand view
oCol:VarPut( newValie _


For pasting initially set
Code: Select all  Expand view
oBrw:lCanPaste := .t.

Then, you can copy any text any where and then press Ctrl-V in the active cell. The value is pasted and browse updated.
This applies even for pasting images in memo fields.
by nageswaragunupudi
Fri Aug 18, 2023 12:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Actualizar xBrowse con un Clic del ratón?
Replies: 22
Views: 1384

Re: DBF to Excel Sheet, without Excel, using ADO ?

... etc we specify the columns are finally double only. c) Date fields accept both dates and datetime values. d) Use field type "TEXT" for memo fields. To have better control of column formatting we need to create Excel Sheets using Excel OLE. ADO has these limitations. We are going to ...
by nageswaragunupudi
Mon Aug 14, 2023 10:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to Excel Sheet, without Excel, using ADO ?
Replies: 50
Views: 2585

Re: Acceder a dbf mediante ado

Download and install VFPOLEDB provider from
https://www.microsoft.com/en-us/downloa ... x?id=32602
and install

After that
open connection object
Code: Select all  Expand view
oCn := FW_OpenAdoConnection( { "FOXPRO", cfoldername }, .T.)

Now you can use DBFCDX dbf files with fpt memo files
by nageswaragunupudi
Fri Jul 28, 2023 2:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Acceder a dbf mediante ado
Replies: 6
Views: 380

Re: Acceder a dbf mediante ado

Mr. Rao, excelente, funciono perfecto.

También necesito usar algunas dbfcdx con memo (dbf y fpt), me podría informar como?
by jpcavagnaro
Thu Jul 27, 2023 6:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Acceder a dbf mediante ado
Replies: 6
Views: 380

Re: Acceder a dbf mediante ado

... everything for you Establishing a connection. oCn := FW_OpenAdoConnection( foldername ) Now all DBF tables (not dbfcdx tables having fpt memo files) are available as tables in this connection. Open any table with oRs := FW_OpenRecordSet( oCn, "states" ) to use states.dbf ...
by nageswaragunupudi
Thu Jul 27, 2023 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Acceder a dbf mediante ado
Replies: 6
Views: 380

Re: how store Image into Database

If you are using DBF via DBFCDX, use memo fields. ( DataType 'M' ) If you are using any RDMS use BLOB fields. DBF: FIELD->IMAGE := MEMOREAD( "picture.jpg" ) RDBMS: oRs:image := MEMOREAD( "picture.jpg" ) ...
by nageswaragunupudi
Sun Jul 23, 2023 11:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how store Image into Database
Replies: 3
Views: 308

Re: how store Image into Database

If you are using DBF via DBFCDX, use memo fields. ( DataType 'M' ) If you are using any RDMS use BLOB fields. DBF: FIELD->IMAGE := MEMOREAD( "picture.jpg" ) RDBMS: oRs:image := MEMOREAD( "picture.jpg" ) ...
by nageswaragunupudi
Sun Jul 23, 2023 11:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how store Image into Database
Replies: 3
Views: 308

Re: Cambios a Campo Memo

Busca en el foro, hay muchos ejemplos
Si, con la version que tienes puedes usar la clase RICHEDIT
( la actual que desarrollé es la RICHEDT5 )
by cnavarro
Thu Jul 06, 2023 2:24 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambios a Campo Memo
Replies: 4
Views: 317

Re: Cambios a Campo Memo

Gracias joao y cristobal.

Algun ejemplo de richedit? No tengo idea de eso.

Sirve para mi version de fw? (19)
by JoseAlvarez
Wed Jul 05, 2023 8:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambios a Campo Memo
Replies: 4
Views: 317
PreviousNext

Return to advanced search