Ruby and Word

hi,

We can open the word file through code as follows,

word = WIN32OLE.new(‘word.application’)

But Is there any way Can I able to connect to the already opened “word”
file and proceed with word operation?

RAJ

word = WIN32OLE.connect ‘word.application’

OK thank you.