Hi Przemek,
I encountered problem with function HGetValueAt() from latest SVN with the
following error:
Error BASE/1187 Bound Error: HB_HVALUEAT
Thanks for any help.
You have to fix your code. You are using index which is aout of scope,
f.e.:
#include "hbcompat.ch"
proc main
local h, i
h:={"A"=>100,"B"=>200,"C"=>300}
? HGetValueAt(h,1)
? HGetValueAt(h,2)
? HGetValueAt(h,3)
? HGetValueAt(h,4) // error here, hash array has only 3 items
return
best regards,
Przemek
I'm reading the pair from .ini file and it used to work few days ago.
I'll investigate further on my code.
Thanks for the hint.
Regards,
Mario
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour