<html><div style='background-color:'><P>Quando eu tento abrir o arquivo.pl dentro da página html... o arquivo.pl não abre...</P>
<P>O código dos arquivos são esses:</P>
<P>&nbsp;</P>
<P>arquivo.html------------------------------------------------------------------------------------------------------------------</P>
<P>&lt;html&gt;<BR>&lt;head&gt;<BR>&lt;title&gt;Teste&lt;/title&gt;<BR>&lt;/head&gt;<BR>&lt;body&gt;<BR>&lt;a href="<A href='http://localhost/cgi-bin/arquivo.pl">Teste</a'>http://localhost/cgi-bin/arquivo.pl"&gt;Teste&lt;/a</A>&gt;<BR>&lt;/body&gt;<BR>&lt;/html&gt;</P>
<P>arquivo.pl--------------------------------------------------------------------------------------------------------------------------</P>
<P>#!c:\perl\bin\perl</P>
<P>use Win32::OLE;</P>
<P>use Win32::OLE::Const 'Microsoft.Word'; </P>
<P>use Win32::OLE::Const 'Microsoft Office';</P>
<P>my $word = CreateObject Win32::OLE 'Word.Application' or die $!;</P>
<P>my $document = $word-&gt;Documents-&gt;Add;</P>
<P>$word-&gt;{'Visible'} = 1;</P>
<P>my $selection = $word-&gt;Selection;</P>
<P>my $nome;</P>
<P>$nome="Carlos Estevão";</P>
<P>$selection -&gt; TypeText($nome);<BR>&nbsp;<BR>$document-&gt;Close();<BR>&nbsp;<BR>$word-&gt;Quit();<BR><BR></P>
<P>&nbsp;</P>
<P><BR><BR>&nbsp;</P><BR>
<DIV>
<P align=left>&nbsp;</P></DIV></div></html>