Hi all,
Does anyone know what code is to be used to write to a bookmark in Word with perl?
I've tried the following;
#Code opens word and makes it visible
$doc = $word->ActiveDocument;
$sel = $doc->bookmarks("bk1")->Select;
$doc->$sel->InsertAfer("here is some text");
perl seems to be complaining that $sel is not initialised.
Does anyone know what code is to be used to write to a bookmark in Word with perl?
I've tried the following;
#Code opens word and makes it visible
$doc = $word->ActiveDocument;
$sel = $doc->bookmarks("bk1")->Select;
$doc->$sel->InsertAfer("here is some text");
perl seems to be complaining that $sel is not initialised.