by Marco Turco » Tue Jul 29, 2008 7:04 pm
Hi,
I'm using FWH May 2008.
The problem appairs in the row
METHOD aRow INLINE ( ::aArrayData[ ::nArrayAt ] )
The strange is that I didn't make any changes on the nArrayAt value,
the error start from a simply sysrefresh().
In order to increase the selection speed I made in my function a routine that execute my code only when a key is released for more than 0.25 seconds. Could be this a problem ? See my code as follows.
Function Main()
.. && I create xbrowse as Objects[6]
..
..
aObjects[6]:bChange:={|| SelectFunc_Cons()} && action to do when any selection is made
return
Function SelectFunc_Cons()
local nSeconds
aObjects[6]:bChange:={|| nil}
nSeconds:=seconds()
do while .t.
sysrefresh() && xbrowse is refreshed and the error appairs
if seconds()-nSeconds>.25
exit
endif
enddo
..
..
.. my code
..
aObjects[6]:bChange:={|| SelectFunc_Cons()}
return
Best Regards,
Marco Turco
SOFTWARE XP LLP