I
icescream
Unregistered / Unconfirmed
GUEST, unregistred user!
var
temstr:string;
begin
temstr:=extractfilepath(application.ExeName);
if not fileexists(temstr+'11.doc') then //如果11.doc是在硬盘上右击鼠标新建的.doc文件就一切正常。
filecreate(temstr+'11.doc'); // 如果是这里生成的。就出现"非文件基础存储上的无效操作调用" 的错误。
framercontrol1.CreateNew(temstr+'11.doc');
worddocument1.ConnectTo(framercontrol1.ActiveDocument as _document);
end;
初学者请前辈帮个忙。
temstr:string;
begin
temstr:=extractfilepath(application.ExeName);
if not fileexists(temstr+'11.doc') then //如果11.doc是在硬盘上右击鼠标新建的.doc文件就一切正常。
filecreate(temstr+'11.doc'); // 如果是这里生成的。就出现"非文件基础存储上的无效操作调用" 的错误。
framercontrol1.CreateNew(temstr+'11.doc');
worddocument1.ConnectTo(framercontrol1.ActiveDocument as _document);
end;
初学者请前辈帮个忙。