From: nobu.nokada@... Date: 2003-03-26T14:36:43+09:00 Subject: Re: Inheriting from WIN32OLE Hi, At Wed, 26 Mar 2003 12:46:00 +0900, Shashank Date wrote: > > Your version of WIN32OLE seems quite old. > > Where can we get the correct version. > > I am using ruby 1.6.8 (2002-12-24) [i586-mswin32] on Win XP Pro. Hmm, I tried with WIN32OLE distributed with 1.8, it is very different from standalone package and rough, although they are same 0.5.2. You need to override WIN32OLE.new. require "win32ole" class IExplorer < WIN32OLE def self.new super("InternetExplorer.Application") end end ie = IExplorer.new -- Nobu Nakada