var
  word: variant;
begin
   word:=createoleobject("word.application");
   word.visible:=true;
   word.documents.add();
   with query1 do
   begin
       while not eof do
          word.selection.typetext(fieldbyanme('fiedname').asstring);
  
       next
   end;
        
要么用流往里插,详细代码给分再说 。