From: Carlos Tirado Date: 2004-11-09T22:47:45+09:00 Subject: Re: win32ole and printing from ie ----- Original Message --------------- From: Hal Fulton Date: Tue, 9 Nov 2004 15:26:25 +0900 > I'm trying to figure out how to control Internet Explorer > and go to a certain URL and print the page. > > The first part is easy. > > Printing, I have no clue. > > Anyone? This works for me: # # use IE, navigate, print # url = 'http://www.ruby-lang.org/' require "win32ole" ie = WIN32OLE.new('InternetExplorer.Application') ie.visible = TRUE; ie.navigate({'url'=>url}) sleep 0.01 while (ie.busy) script = ie.document.script printme = script.print(); -- C