From lyle at lylejohnson.name Wed Nov 7 14:16:36 2007 From: lyle at lylejohnson.name (Lyle Johnson) Date: Wed, 7 Nov 2007 13:16:36 -0600 Subject: [fxruby-users] [ANN] Upcoming FXRuby Book from the Pragmatic Bookshelf Message-ID: All, Some of you already know about this, but I can now officially announce that I?m writing a book about FXRuby for the Pragmatic Bookshelf. I?m excited about this project because it will be the first book ever dedicated to the subject of FOX and FXRuby application development. I?m especially excited to be writing for the Pragmatic Programmers, who over the past few years have set a new standard of excellence for software development books. For more information, please see this blog posting: http://lylejohnson.name/blog/2007/11/07/every-day-i-write-the-book/ Thanks, Lyle From elyageny at gmail.com Thu Nov 8 15:21:45 2007 From: elyageny at gmail.com (ev b) Date: Fri, 9 Nov 2007 00:21:45 +0400 Subject: [fxruby-users] extractText Message-ID: hello i try inject next code in table.rb sample: FXMenuCommand.new(filemenu, 'test extractText').connect(SEL_COMMAND) { n = 0 10000.times { n+=1; p n; @table.extractText(0, at table.numRows-1,0, at table.numColumns-1) } } and i get segmentation fault or just silent exit -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/fxruby-users/attachments/20071109/e2f76eab/attachment.html From lyle at lylejohnson.name Thu Nov 8 16:27:39 2007 From: lyle at lylejohnson.name (Lyle Johnson) Date: Thu, 8 Nov 2007 15:27:39 -0600 Subject: [fxruby-users] extractText In-Reply-To: References: Message-ID: <57cf8f720711081327q4b48d5eya37c43451c8e0d54@mail.gmail.com> On 11/8/07, ev b wrote: hello > > i try inject next code in table.rb sample: > > FXMenuCommand.new(filemenu, 'test extractText').connect(SEL_COMMAND) { > n = 0 > 10000.times { n+=1; p n; > @table.extractText (0, at table.numRows-1,0, at table.numColumns-1) > } > } > > and i get segmentation fault or just silent exit Thanks. This bug has been previously reported, here: http://rubyforge.org/tracker/index.php?func=detail&aid=15444&group_id=300&atid=1223 Will be fixed in version 1.6.13. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/fxruby-users/attachments/20071108/5baeb96e/attachment.html From lyle at lylejohnson.name Fri Nov 9 11:20:43 2007 From: lyle at lylejohnson.name (Lyle Johnson) Date: Fri, 9 Nov 2007 10:20:43 -0600 Subject: [fxruby-users] [ANN] FXRuby 1.6.13 Now Available Message-ID: <57cf8f720711090820g6a51be0eq5c0c6057147745dc@mail.gmail.com> All, FXRuby version 1.6.13 is now available for download from this page: http://rubyforge.org/frs/?group_id=300&release_id=16231 For a summary of the changes in this release of FXRuby, please see this page: http://www.fxruby.org/doc/changes.html As usual, the code is provided as a Win32 installer or a binary Gem (both compatible with the latest One-Click Installer for Ruby), as a source gem, and as a source tarball. For instructions on compiling FXRuby from source, please see: http://www.fxruby.org/doc/build.html And as always, the FXRuby home page is here: http://www.fxruby.org Enjoy, Lyle From bjorn.bergqvist at gmail.com Fri Nov 9 14:15:50 2007 From: bjorn.bergqvist at gmail.com (=?ISO-8859-1?Q?Bj=F6rn_Bergqvist?=) Date: Fri, 9 Nov 2007 19:15:50 +0000 Subject: [fxruby-users] [ANN] FXRuby 1.6.13 Now Available In-Reply-To: <57cf8f720711090820g6a51be0eq5c0c6057147745dc@mail.gmail.com> References: <57cf8f720711090820g6a51be0eq5c0c6057147745dc@mail.gmail.com> Message-ID: <44936e730711091115u7179c15dw24d9d663ae22fccb@mail.gmail.com> Hi, Thank you for fixing the FXTable::extractText. Seems to work perfectly. Thanks again Bjorn Bergqvist http://www.discretizer.org 2007/11/9, Lyle Johnson : > All, > > FXRuby version 1.6.13 is now available for download from this page: > > http://rubyforge.org/frs/?group_id=300&release_id=16231 > > For a summary of the changes in this release of FXRuby, please see this page: > > http://www.fxruby.org/doc/changes.html > > As usual, the code is provided as a Win32 installer or a binary Gem > (both compatible with the latest One-Click Installer for Ruby), as a > source gem, and as a source tarball. For instructions on compiling > FXRuby from source, please see: > > http://www.fxruby.org/doc/build.html > > And as always, the FXRuby home page is here: > > http://www.fxruby.org > > Enjoy, > > Lyle > _______________________________________________ > fxruby-users mailing list > fxruby-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/fxruby-users > From barryjr at gmail.com Wed Nov 21 14:29:47 2007 From: barryjr at gmail.com (Barry Walker) Date: Wed, 21 Nov 2007 12:29:47 -0700 Subject: [fxruby-users] win32ole event handling Message-ID: I'm evaluating FXRuby for my application. So far everything is going pretty well. The news on the book is good, but I wish it were available today! First off, I'm not much of a Windows programmer (that's what makes FXRuby so valuable to me). I'm using win32ole to interface to a custom ocx. Calling methods of the ocx works fine. Now I need to receive event info from the ocx and update my application window. I'm lost on how to get this started. Are there any examples that might pave the way? Pick axe has win32ole event receiving paragraph, but it sure doesn't look compatible with app.run. Thanks, Barry -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/fxruby-users/attachments/20071121/408ef574/attachment.html From lyle at lylejohnson.name Wed Nov 21 14:57:19 2007 From: lyle at lylejohnson.name (Lyle Johnson) Date: Wed, 21 Nov 2007 13:57:19 -0600 Subject: [fxruby-users] win32ole event handling In-Reply-To: References: Message-ID: <57cf8f720711211157y5be422dfn5dbc3adcdce40fee@mail.gmail.com> On 11/21/07, Barry Walker wrote: > I'm evaluating FXRuby for my application. So far everything is going pretty > well. The news on the book is good, but I wish it were available today! It's possible that we'll release it as a Beta Book sometime before April, but yeah, it's still not quite ready for public consumption. ;) > First off, I'm not much of a Windows programmer (that's what makes FXRuby so > valuable to me). I'm using win32ole to interface to a custom ocx. Calling > methods of the ocx works fine. Now I need to receive event info from the > ocx and update my application window. > > I'm lost on how to get this started. Are there any examples that might pave > the way? Pick axe has win32ole event receiving paragraph, but it sure > doesn't look compatible with app.run. The short answer is, I don't know -- but I'll look into it ASAP. I'm about to head out of town for the holidays, and I'll have limited internet access (eek!), but I wanted to acknowledge that I'd seen the question. Maybe I'll get lucky and someone else will answer in the meantime. Cheers, Lyle