T
Talib Hussain
How to Use CTRL + C ie Copy to clipboard text from word file.
Talib said:How to Use CTRL + C ie Copy to clipboard text from word file.
2008/12/15 Talib Hussain said:How to Use CTRL + C ie Copy to clipboard text from word file.
Heesob said:require 'win32ole'
word = WIN32OLE.new('word.application')
file = 'c:/work/test.doc'
doc = word.documents.open(file,'ReadOnly' => true)
word.selection.wholestory # select whole text
word.selection.copy # copy to clipboard
word.activedocument.close(false)
word.quit
Regards,
Park Heesob
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.