in reply to Win32::Ole selection
P.S. You can easily findout what you need to do by using word's record macro feature.use Win32::OLE; use Win32::OLE::Const 'Microsoft Word'; my $word = Win32::OLE->new('Word.Application'); $word->{Visible} = 1; my $document=$word->Documents->Add; $word->Selection->TypeText("Some Text"); $word->Selection->HomeKey(wdLine); $word->Selection->EndKey(wdLine, wdExtend)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Win32::Ole selection
by dws (Chancellor) on Dec 11, 2001 at 01:28 UTC | |
|
Re: Re: Win32::Ole selection
by Bloodelf (Beadle) on Dec 11, 2001 at 01:42 UTC | |
by Bloodelf (Beadle) on Dec 11, 2001 at 02:08 UTC | |
by Bloodelf (Beadle) on Dec 11, 2001 at 02:48 UTC |