Hallo,
mit der WordApplication Komponente (ab Delphi 7, glaube ich) geht auch folgendes:
Delphi-Quellcode:
with WordApplication do begin
try
Connect;
Visible := True;
Documents.Add(EmptyParam, EmptyParam, EmptyParam, EmptyParam);
with Selection do begin
TypeText('Some Text' + #11);
...
end;
finally
...
end;
Beste Grüße
Thomas