in reply to Win32::OLE not opening a window for me

use strict; use warnings; use Win32::OLE; my $word = Win32::OLE->new( 'Word.Application' ); $word->{Visible} = 1;

You need to make it visible. You may need to check the task manager for orphaned instances of Word (or reboot your machine).

Regards,

John Davies

Replies are listed 'Best First'.
Re^2: Win32::OLE not opening a window for me
by Anonymous Monk on Mar 23, 2012 at 13:56 UTC

    Ah, that's it. More confident it's working now I can actually see it!

    Thanks

    MorayJ