search for: menochet

Displaying 4 results from an estimated 4 matches for "menochet".

Did you mean: menchen
2006 May 31
3
FXLabel: ca''nt set the Icon attibute
Hi, trying that: aLabel = FXLabel.new(menuBar35,nil,@@maximizeIcon,0) aLabel.icon = @@restoreIcon # ok aLabel.connect(SEL_LEFTBUTTONPRESS) do |sender, selector, data| case sender.icon when @@maximizeIcon sender.icon = @@restoreIcon when @@restoreIcon sender.icon = @@maximizeIcon end 0 end Result abnormal
2006 Apr 25
5
FXListBox ...connect(SEL_COMMAND)
Hi, I think I got a problem with the FXListBox widget. ( ruby 1.8.4 (2005-12-24) [i386-mswin32]) ) FXListBox.new(parent, nil, 0) do |libo4| libo4.appendItem("0 very weird") libo4.appendItem("1 very weird") libo4.appendItem("2 very weird") libo4.appendItem("3 very weird") libo4.appendItem("4 very
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
2006 May 15
3
FXTextField - posSelected?(pos)
Hi, I wonder if am facing a bug or something else On a FXtextField, I want to detect the low and high pos of the selected string example: the text is: 0123456789 The selected string is : 234567 first = last = -1 atext.text.length.times do |pos| first = pos if atext.posSelected?(pos) and first < 0 last = pos if atext.posSelected?(pos)