Search found 61 matches: aread

Return to advanced search

Array y Bitmaps en MEMO

Hola foreros. Tengo la constumbre de guardar Arrays en campos MEMO con ASave( aVar ), que después recupero con ARead(). A veces tambien guardo pequeños bitmaps cargados con MEMOREAD(). El problema me surgió a la hora de leer dichos campos MEMO. Para saber si guardo un array o ...
by antolin
Thu Oct 10, 2013 2:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Array y Bitmaps en MEMO
Replies: 2
Views: 623

Re: Nuevos errores al migrar de FWH1104 a 1304

Don Antonio, Gracias por responder. Entiendo lo que mencionas, solo deseo saber si debo modificar Window.prg cada vez que actualise la version creando una "function ARead_2( cInfo )" como sugiere Gustavo Prediger en su post o si hay la posibilidad de que en el futuro ya no sea necesario ha...
by RodolfoRBG
Thu May 16, 2013 4:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevos errores al migrar de FWH1104 a 1304
Replies: 7
Views: 1712

Re: Nuevos errores al migrar de FWH1104 a 1304

Rodolfo, En FWH 11.04 en la función ARead() había un pequeño bug que se corrigió en versiones posteriores. Para que ARead() te funcione correctamente, debes cambiar la línea 1798 en window.prg: function ARead( cInfo ) local nPos := 1, nLen, ...
by Antonio Linares
Thu May 16, 2013 1:46 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevos errores al migrar de FWH1104 a 1304
Replies: 7
Views: 1712

Re: Nuevos errores al migrar de FWH1104 a 1304 ¿SOLUCIONADO?

Buscando en este foro encontre un viejo mensaje en: QUE CAMBIO EN LA VERSION 8.12 XH ASAVE() AREAD() http://forums.fivetechsupport.com/viewtopic.php?f=6&t=14287&p=73732&hilit=aread#p73732 la solucion, pero no se si al hacer ese cambio en la ...
by RodolfoRBG
Thu May 16, 2013 1:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevos errores al migrar de FWH1104 a 1304
Replies: 7
Views: 1712

Nuevos errores al migrar de FWH1104 a 1304

En la version anterior guardaba y extraia arreglos con ASave() y ARead() en campos memos de una DBF. Ahora al leerlos me regresa los arreglos vacios.

En whstsnew no menciona ningun cambio en estas funciones. Hay alguna nueva Lib o algo mas que deba modificar o agregar?

Salu2
by RodolfoRBG
Wed May 15, 2013 11:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevos errores al migrar de FWH1104 a 1304
Replies: 7
Views: 1712

Re: Antonio: Bug in ARead()

For years i use this functions to store arrays. In the last time aread() gives wrong resultats. Antonio, please make
Code: Select all  Expand view
cVal := asave({1,2,3})
msginfo(len(aread(cVal)))
by byte-one
Wed Feb 22, 2012 10:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio: Bug in ARead()
Replies: 3
Views: 601

Re: Antonio: Bug in ARead()

Günther,

Could you please provide an example that shows the need for that change ? thanks :-)
by Antonio Linares
Wed Feb 22, 2012 7:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio: Bug in ARead()
Replies: 3
Views: 601

Re: Antonio: Bug in ARead()

Mr Günther

You are right. Actually it was 4 in the older versions. This value was changed to 1 in some later version wrongly.

Should be restored to 4.
by nageswaragunupudi
Wed Feb 22, 2012 4:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio: Bug in ARead()
Replies: 3
Views: 601

Antonio: Bug in ARead()

In the function aRead() there must be "local nPos := 4,...." in the first line!
by byte-one
Mon Feb 20, 2012 2:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio: Bug in ARead()
Replies: 3
Views: 601

Re: asave/aread

here is another way to save / load 2-dimensional arrays in / from a memofield METHOD LoadShares ()  LOCAL cAll := (::cAlias)->Shares                     // load string from memo  LOCAL cShare := "", aShare := {}, aSh := {}  LOCAL nCount := 0 //NumAt (...
by StefanHaupt
Wed Oct 12, 2011 9:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: asave/aread
Replies: 5
Views: 1640

Re: asave/aread

Added to FiveWin Wiki with a usage example :)

Regards
Anser
by anserkk
Wed Oct 12, 2011 5:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: asave/aread
Replies: 5
Views: 1640

Re: asave/aread

FW_ValToExp( aArray ) should be visible in FIVEWIN DOKU!
by byte-one
Tue Oct 11, 2011 9:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: asave/aread
Replies: 5
Views: 1640

Re: asave/aread

You are right. We have been experiencing the problem with "some recent" versions of xHarbour. This had also effected XBrowse's SaveState() method. I suggest three alternatives: #1. Copy the ASave function from windows.prg into your module that is using ASave as a static function. #2. Creat...
by nageswaragunupudi
Tue Oct 11, 2011 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: asave/aread
Replies: 5
Views: 1640

asave/aread

These functions are not saving and reading a array on the right way. It seems, the aread is ok but asave not saving normal. An older app reads a array saved with a old version from FWH normal. But if i write back with asave, the array ist destructed!
by byte-one
Tue Oct 11, 2011 8:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: asave/aread
Replies: 5
Views: 1640
PreviousNext

Return to advanced search