我试图使用VBA从PDF文档中删除一个空白页,但出现了一些问题...
> Sub deletepage()
A as acrobat.acroapp
B as acrobat.acropddoc
Set a = createobject("acroexch.app")
Set b = createobject("acroexch.pddoc")
A.show
Myfoc.open(filename)
If mydoc.deletepages(1,2)=True then
Deleted
Else
Not deleted
End if
> End sub
1条答案
按热度按时间bvjxkvbb1#
如果您不介意将Python与VBA结合使用,可以尝试以下操作:
Python脚本'delete_page. py':
但是你需要在你的系统上安装Python,我自己也刚刚开始使用Python,发现它是一个很好的"扩展",可以处理在VBA中变得复杂的事情。
试试看。
问候