perl-tk fonts question

2009-06-09 Thread me
Hi All! I have a perl-tk application without explicit font settings(all by default) Is there a way to change all fonts sizes ... say increase by two ? ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://lis

insert picture in Word using Perl OLE

2004-10-18 Thread just me
hi i am trying out Win32::OLE to insert a picture to a Word doc. . $msword->{Visible} = 1 ; $msword->{DisplayAlerts} = 1 ; my $doc1 = $msword->Documents->Add() ; $doc1->Shapes->AddPicture("D:\logo.gif",0,1); ... The picture doesn't show up in the word doc. Is this the

OLE with MS word

2004-10-12 Thread just me
hi I have a MS word doc with an extract of the following format Date: Name: I have been using this doc as mail merge from another file, so the and are dynamic. Now i want to try and use Perl to make use of Win32::OLE module to change and insert new values to replace and . what are the method

stopping a running process

2003-08-29 Thread just me
hi i have a program that executes and generates a log file and it will stay there collecting logs till user intervention like Ctrl C. If i wanted to write a perl script and schedule it to stop the program after a certain time , how do i do it?? any ways? thanks