On Wed, Mar 2, 2011 at 7:40 AM, Dave Dawson <[email protected]> wrote:
> I think I've found another problem ... > > 3996 *-* if getItemInfo(index, d, subItem) > 1130 *-* info. = lc~iteminfo(item) > Error 43 running C:\Program Files\ooRexx\OODIALOG.CLS line 3996: Routine > not found > Error 43.1: Could not find routine "GETITEMINFO" It turns out I found that bug myself a little bit ago. I had a typo at line 3996, I had this: if getItemInfo(index, d, subItem) then do it should be: if self~getItemInfo(index, d, subItem) then do You can fix that easily in your own copy of ooDialog.cls. Just change the line to the correct value. Otherwise it will be fixed in the next update. > I'm also changing all of my "add" methods to the new "create" methods as > well as changing from dialog units to pixels, so I should be doing a fair > bit of testing. I hope I'm being helpful rather than being a pain - please > be honest! This is helpful. This is exactly what I was hoping people would do. I only found this bug myself by accident. People using the beta will only make the release a better product. -- Mark Miesfeld ------------------------------------------------------------------------------ Free Software Download: Index, Search & Analyze Logs and other IT data in Real-Time with Splunk. Collect, index and harness all the fast moving IT data generated by your applications, servers and devices whether physical, virtual or in the cloud. Deliver compliance at lower cost and gain new business insights. http://p.sf.net/sfu/splunk-dev2dev _______________________________________________ Oorexx-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/oorexx-users
