VFP可以控制WPS演示软件实现打开PPTX另存为PDF吗
可以做到VFP调用打开PPTX,但无法实现另存为PDF操作opptxApp = Createobject("powerpoint.Application")
opptxApp.Visible=.t.
pptx_open_loc="D:\测试.pptx"
opptxApp.presentations.open("&pptx_open_loc")
pptx_save_pdf_loc="D:\测试.pdf"
&&下面一句执行无效,17参数是仿照word中另存为pdf的参数
opptxApp.activepresentation.save("&pptx_save_pdf_loc",17)