如何调用WORD模板,并在模板中输入内容(100分)

  • 主题发起人 主题发起人 bingren520
  • 开始时间 开始时间
B

bingren520

Unregistered / Unconfirmed
GUEST, unregistred user!
最好能给出代码,马上加分
 
你用的什么控件调用WORD摸板? 如果是ARWordReport 这个我示例很多。
 
http://www.delphibbs.com/keylife/iblog_show.asp?xid=21723
 
我用的是SERVER组中的控件来调用WORD的,随便问下,如何插入数据流对象
 
WordApplication1: TWordApplication;
WordDocument1: TWordDocument;
//

WordApplication1.Connect;
NewTemplate:=true ;
filename:='test.doc';
WordDocument1.ConnectTo(WordApplication1.Documents.AddOld(filename,NewTemplate));
 
楼上的只给出了如何调用模板的方法,并没有给出如何插入数据的方法,没人知道吗?
 
http://www.delphibbs.com/delphibbs/dispq.asp?lid=733289
 
worddocument1.tables.item(Table_index).Cell(rows,column).Range.Text:='ssss'
第 Table_index个表 的第rows行column列的值
 
后退
顶部