From: "Jim Powers" <[EMAIL PROTECTED]>
> I'm using the latest version of ActiveState perl under Windows 95.
> I am trying to print a Word 97 document as follows:
>
> $use Win32::OLE;
> $wd = Win32::OLE->GetObject("C:\\Hello.doc") or die "GetObject failed";
> $wd->printOut;
>
> This works fine under Windows NT but NOT under Windows 95.
>
> Is there a known problem in the Win 95 world?

Just an OS limitation, use this
my $Word = Win32::OLE->new('Word.Application', 'Quit');
my $Doc = $Word->Documents->Open("C:\\Hello.doc");

Rob
http://bangkokwizard.com/
Backup: The duplicate copy of crucial data that no one bothered to make;
used only in the abstract.



---
You are currently subscribed to perl-win32-users as: [archive@jab.org]
To unsubscribe, forward this message to
         [EMAIL PROTECTED]
For non-automated Mailing List support, send email to  
         [EMAIL PROTECTED]

Reply via email to