如何隐藏powerpoint 窗体(100分)

  • 主题发起人 主题发起人 myoldsaturn
  • 开始时间 开始时间
M

myoldsaturn

Unregistered / Unconfirmed
GUEST, unregistred user!
这句话ppt.Visible:=true;不能改成 ppt.Visible:=falsed的
try
ppt:= CreateOleObject('PowerPoint.Application');
ppt.Visible:=true;
Dc:=ppt.Presentations.Open(FileName,msoFalse, msoFalse, msoTrue); //msoFalse, msoFalse, msoFalse
Dc.SaveAs(HtmFilePath,ppSaveAsHTMLv3,msoTrue); //ppSaveAsHTML
// ppt.ActivePresentation.SaveAs(HtmFilePath,ppSaveAsHTMLv3,msoTrue); //ppSaveAsHTML
Sleep(500);
finally
ppt.quit;
end;
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部