tags:

views:

57

answers:

1

I'm new to Perl and I want to open a Word document in the MS Word application with cursor pointing the location specified by me. Is it possible to implement this requirement in Perl?

+1  A: 

The Win32::OLE module can help with scripting Word and other Windows apps in Perl.

I found a code example of how it's used at René Nyffenegger's OLE tutorial.

Powertieke