Hi, There is a small bug for quite a long time in FXRuby (At least FXRuby, but this might be related to Fox, I don''t know...) where a click inside an empty FXTable crashes the application. I have just found a workaround, simply by overloading a few functions in FXTable. def startInput(row, col) super unless (row < 0 or col < 0) end def setCurrentItem(row, column, notify=false) super unless (row < 0 or column < 0) end def makePositionVisible(row, column) super unless (row < 0 or column < 0) end This works just fine for me. I hope it can help track the problem. Merry Christmas to everyone, Regards from Switzerland, --------------- Philippe Lang Attik System -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3125 bytes Desc: not available Url : http://rubyforge.org/pipermail/fxruby-users/attachments/20061222/01fcaec6/attachment.bin