将delphi数据输入WORD中实现格式化打印(100分)

  • 主题发起人 主题发起人 sandal
  • 开始时间 开始时间
S

sandal

Unregistered / Unconfirmed
GUEST, unregistred user!
有一个现成的WORD表(别人做好的),我只要将DELPHI中的数据输到相应的位置就好了,如何实现?我要做的是一个采购单,客人印好了空表,我只要对空位填资料就行了,该如何实现。
主要是: 頁頭, 頁尾, 表格填空
 
以下4段代码是调用wrod,打开一个文档
将里面的#<name>替换你想要的字符的方法

打开DELPHI
转到severs组件板
拉一个WordApplication1,改名为WordApplication
一个WordDocument1改名为WordDocument
转到dialogs组件板
拉一个OpenDialog1,改名为dlgopen
再拉4个button,将以下四段代码依次放入就行了
启动word时用如下代码:
begin
try
wordapplication.connect;
except
messagedlg('word may not be installed', mterror, [mbok], 0);
abort;
end;
wordapplication.visible := true;
wordapplication.caption := 'delphi automation';
end;
/////////////////////////////////////
关闭word用如下代码。如果想保存doc文件,请修改savechanges变量的内容:
var
savechanges, originalformat, routedocument: olevariant;
begin
savechanges := wddonotsavechanges;
originalformat := unassigned;
routedocument := unassigned;
try
wordapplication.quit(savechanges, originalformat, routedocument);
wordapplication.disconnect;
except
on e: exception do
begin
showmessage(e.message);
wordapplication.disconnect;
end;
end;
end;
/////////////////////////////////////
让word打开一个指定的文件,需要先放置opendialog,然后调用wordapplication.documents.open:
var
itemindex :olevariant;
filename, confirmconversions, readonly, addtorecentfiles,
passworddocument, passwordtemplate, revert,
writepassworddocument, writepasswordtemplate, format: olevariant;
begin
if not dlgopen.execute then
exit;
{open document}
filename := dlgopen.filename;
confirmconversions := false;
readonly := false;
addtorecentfiles := false;
passworddocument := '';
passwordtemplate := '';
revert := true;
writepassworddocument := '';
writepasswordtemplate := '';
format := wdopenformatdocument;
wordapplication.documents.open( filename, confirmconversions,
readonly, addtorecentfiles, passworddocument, passwordtemplate,
revert, writepassworddocument, writepasswordtemplate, format );
{assign worddocument component}
itemindex := 1;
worddocument.connectto(wordapplication.documents.item(itemindex));
{turn spell checking of because it takes a long time if enabled and slows down winword}
wordapplication.options.checkspellingasyoutype := false;
wordapplication.options.checkgrammarasyoutype := false;
end;
/////////////////////////////////////
让word替换标记字符串要使用worddocument.range.find.execute,这里用delphi替换了<#name>:
var
findtext, matchcase, matchwholeword, matchwildcards, matchsoundslike,
matchallwordforms, forward, wrap, format, replacewith, replace: olevariant;
begin
findtext := '<#name>';
matchcase := false;
matchwholeword := true;
matchwildcards := false;
matchsoundslike := false;
matchallwordforms := false;
forward := true;
wrap := wdfindcontinue;
format := false;
replacewith := 'delphi';
replace := true;
worddocument.range.find.execute( findtext, matchcase, matchwholeword,
matchwildcards, matchsoundslike, matchallwordforms, forward,
wrap, format, replacewith, replace );
end;
/////////////////////////////////////
 
謝謝你的回答
我想要的答案是:
WORD中有一個頁頭,一張空表,一個頁腳, 都已經設定好, 只要將數據庫中的數擾往空格的地方填空
就好了,其實主要目的就是在印刷好的<<采購單>>上打報表.
 
我很……
我的意思是你将那些要写入的地方写入一个特殊的字符标记保存为摸板
再用delphi控制word的替换功能
将这些特殊的字符标记替换为相应的内容就ok了
 
后退
顶部