|

楼主 |
发表于 2008-3-17 16:02:52
|
显示全部楼层
1.客户端没装word的情况有方法实现吗
2.帮我看一下代码,怎么没有打开制定文档
unit MainForm;
interface
uses
Business.System, Business.Forms;
type
TMainForm = class(TForm)
procedure BizFormShow(Sender: TObject);
private
{private declarations}
public
{public declarations}
end;
implementation
procedure TMainForm.BizFormShow(Sender: TObject);
begin
Borland.Delphi.ShellAPI.ShellExecute(0, 'open', 'c:\wininst.txt', '', '', borland.Delphi.Windows.Sw_ShowNormal);
end;
end. |
|