I have been working on a script that imports a number of pictures into
powerpoint edits some text and saves the presentation out.  The main
program works fine but there are some annoying things that happen with
the application.

I am creating the application with:
my $app = Win32::OLE->new('PowerPoint.Application');
$app->{'Visible'} = 1;
$app->{'WindowState'} = 2;

The issue is that I would like to hide this instance and not interfere
with any other instances of powerpoint running.  If I try to set
visible to anything but 1 I get an error that says I am not allowed to
hide the application frame.  Adding windowstate does seem to minimize
powerpoint (after of course popping it up first) but still will close
any running powerpoint sessions.
I would like to basically hide the application and run it standalone.

Any thoughts?
Thanks



-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/


Reply via email to