OK, let's try formatting again...
Thank you! However, I'm having trouble translating a word
macro command into Perl to goto thte next section:
After I get the count of sections I do:
for ($i=1; $i<=$sections; $i++){
#In Word, it does this next comment line, which I'm not #translating c
+orrectly and which sometimes gives the
#blue screen of death...
#Selection.GoTo what:=wdGoToSection, which:=wdGoToFirst,
#Count:=1, Name:=""
$doc->ActiveWindow->Selection->Goto ("wdGotoSection", "wdGoToNext", 1,
+ );
#do more stuff...how in the world does above line Xlate? }
|