Displaying 1 result from an estimated 1 matches for "afxlist".
Did you mean:
fxlist
2006 Apr 19
1
is there a problem with FXList findItemByData(....) ??????
Hi,
I am tackling with FXList ( ruby 1.8.4 (2005-12-24) [i386-mswin32]) )
. The ''data'' value is a MDIChild reference
afxlist.findItemByData(sender) => return -1 . Always
I can turn around it by doing
..........
cpt = 0 ; idx=nil
afxlist.each do |lista|
if lista.data == sender
idx=cpt
break
end
cpt+=1
end
.............