检测PC是否安装PowerPoint
uses
ComObj
function IsInstallProg(const ProgID: string) : boolean;
begin
result := true;
try
ProgIDToClassID('PowerPoint.Application');
except
result := false;
end;
end;
检测PC是否安装PowerPoint
uses
ComObj
function IsInstallProg(const ProgID: string) : boolean;
begin
result := true;
try
ProgIDToClassID('PowerPoint.Application');
except
result := false;
end;
end;