Hi, At Wed, 26 Jun 2002 04:24:32 +0900, Yohanes Santoso wrote: > > How can I access the value of the "type" property (in this example, it's > > supposed to be 25) instead of WIN32OLE? > > This calls the #type method inherited from Object. If you want to Object#type is old name for Object#class, and you can undefine it. class << element; undef_method :type; end or WIN32OLE.module_eval {undef type} -- Nobu Nakada