你动态创建一个Ole容器,然后在动态建立一个Word.document对象
要Destory Word.document时直接把容器Destroy掉.
比如 
     OleContainer := TOleContainer.Create(Application);
     OleContainer.parent := MainForm ;
     OleContainer.CreateObject("word.document",false)
     OleContainer.Destroy
你试试看