Search found 65 matches: asave

Return to advanced search

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

hi, i wonder why not :aModiData is used for aSave *        AADD( aSave, { ::aStructPG[ nFld, 8 ], uVal } ) // wrong for UTF8 Table ???        AADD( aSave, { ::aModiData[n][1], ::aModiData[n][2] ...
by Jimmy
Thu Aug 03, 2023 8:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 763

Re: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?

... FIELD Position :?: this line "bestand" is ok TDATAROW:SAVEPQQ( 1827 ) var2char(::aModiData) = "{{bestand, 221.00, 6}}" but aSave have wrong FIELD Name "mindest" TDATAROW:SAVEPQQ( 1828 ) var2char(aSave) = "{{mindest, 221.00}}" so i get this Error TDATAROW:SAVEPQQ( ...
by Jimmy
Thu Aug 03, 2023 6:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: METHOD SavePQQ() need "id" or how to use own PRIMARY KEY ?
Replies: 21
Views: 763

Re: AGREGAR ARRAY EN CODIGO QR

MI estimado buenos dias... Utiliza las funciones ASAVE y AREAD, ASAVE convierte un array en una cadena (luego lo trabajas en el QR, aunque te recomiendo usar PDF417 AREAD lee la cadena y la reconvierte a un ARRAY (previamente convertida con ASAVE) ...
by joseluisysturiz
Thu Jan 26, 2023 3:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AGREGAR ARRAY EN CODIGO QR
Replies: 6
Views: 700

Re: AGREGAR ARRAY EN CODIGO QR

MI estimado buenos dias... Utiliza las funciones ASAVE y AREAD, ASAVE convierte un array en una cadena (luego lo trabajas en el QR, aunque te recomiendo usar PDF417 AREAD lee la cadena y la reconvierte a un ARRAY (previamente convertida con ASAVE) ...
by Willi Quintana
Thu Jan 26, 2023 1:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AGREGAR ARRAY EN CODIGO QR
Replies: 6
Views: 700

Re: ADO and hb_serialize()

James, With Asave : 'UPDATE OUTPUTS SET ACAMPOS = 'AË * N 1N 2N 3N 4N 5N 6N 7N 8N 9N 10N 11N 12N 13N 14N 15N 16N 17N 18N 19N 20N 21N 22N 23N 24N 25N 26N 27N 28N 29N 30N 31N 32N 33N 34N 35N 36N ...
by AHF
Fri Oct 09, 2015 5:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO and hb_serialize()
Replies: 10
Views: 1457

Re: ADO and hb_serialize()

Antionio,

Can you just use:

ASave( aArray ) --> cText

ARead( cText ) --> aArray

James
by James Bott
Fri Oct 09, 2015 3:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO and hb_serialize()
Replies: 10
Views: 1457

Re: How to obtain return value of a called exe?

To communicate two exes programs. Send parameters or returns information:

- You can use aRead() and aSave() functions.
- Or better FW_ValToExp() funcion with memowrit() and & operator with memoread().
by hmpaquito
Tue Jun 30, 2015 9:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to obtain return value of a called exe?
Replies: 7
Views: 1043

Array mut grandes

Hola foreros. Me ha surgido la necesidad de guardar un array en un fichero. En principio no hay problemas, lo codifico con ASave() y lo guardo con MEMOWRIT(). Después lo recupero con MEDMOREAD() y reconstruyo el array con AREad(). Hasta ahí todo bien. El problema aparece cuando tengo ...
by antolin
Mon Sep 22, 2014 5:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Array mut grandes
Replies: 2
Views: 537

Re: Multi dimensional Array, aSave, aRead

I am not discussing about ARead and ASave, but like to discuss some alternatives. #1) If we are using "DBFCDX", we need not make any conversions. We can straightaway assign and read Arrays to and from memo fields very safely. (cAlias)->MEMOFLD ...
by nageswaragunupudi
Wed Nov 20, 2013 1:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multi dimensional Array, aSave, aRead
Replies: 5
Views: 1540

Re: Multi dimensional Array, aSave, aRead

Hola Antonio.

Estoy utilizando la version 13.08.

Alejandro, Gracias por el Tip, por ahora lo resolvi asi, como lo comentas.

Saludos
by devtuxtla
Sun Nov 17, 2013 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multi dimensional Array, aSave, aRead
Replies: 5
Views: 1540

Re: Multi dimensional Array, aSave, aRead

Yo uso desde hace muchisimo tiempo los campos memo guardando arrays multidimensionales sin hacer absolutamente ninguna formula ni nada. Simplemente creo el campo como memo AADD(aDbf,{"ITEMS", "M", 10, 0}) y luego le asigno el array que necesito: aItems[n][1] // Fecha aItems[n][2]...
by TecniSoftware
Tue Nov 12, 2013 12:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multi dimensional Array, aSave, aRead
Replies: 5
Views: 1540

Re: Multi dimensional Array, aSave, aRead

Gustavo,

Que versión de FWH estás usando ?
by Antonio Linares
Tue Nov 12, 2013 8:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multi dimensional Array, aSave, aRead
Replies: 5
Views: 1540

Re: Multi dimensional Array, aSave, aRead

I use valtoprgexp()

replace MemoField with valtoprgexp( aData )

then later

aData := &( MemoField )

This may be a xHarbour.com function but I am not sure.
by Gale FORd
Mon Nov 11, 2013 8:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multi dimensional Array, aSave, aRead
Replies: 5
Views: 1540

Multi dimensional Array, aSave, aRead

Hello Fivewinners. I require save and read in a memo field, multi dimensional array, I  try saving with aRead aSave and read it, but send me the following error:     Time from start: 0 hours 1 mins 39 secs     Error occurred at: 11/11/2013, 12:24:18     Error description: Error ...
by devtuxtla
Mon Nov 11, 2013 6:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multi dimensional Array, aSave, aRead
Replies: 5
Views: 1540

grabar y leer un array multi dimensional

Hola Fivewinners. Requiero guardar y leer en un campo memo, un arreglo multi dimensional, YA intente guardarlo con aSave y leerlo con aRead, pero me envia el siguiente error: Time from start: 0 hours 1 mins 39 secs Error occurred at: 11/11/2013, 12:24:18 Error description: Error ...
by devtuxtla
Mon Nov 11, 2013 6:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: grabar y leer un array multi dimensional
Replies: 1
Views: 775
Next

Return to advanced search