From: zxem Date: 2007-11-14T21:10:01+09:00 Subject: win32ole: Pass by Reference All, I am using Ruby 1.8.6 now and trying to so a pass by reference COM call through win32ole. The code looks like this: (I am not really calling Excel) ------------------------------------------------------ excel = WIN32OLE.new("excel") excel.getCell(cell, column, row) --------------------------------------------------- The first parameter I need to pass into getCell on line2 is a complex object(not String/double). Could anyone please teach me how to do this call in Ruby? Cheers!