[已解决]有没有批量处理 把word 2007 或者 2010 转成 word 2003的脚本啊?
本帖最后由 zzwwdd 于 2013-2-24 16:48 编辑有没有批量处理 把word 2007 或者 2010转成 word 2003的脚本啊?
一个个转很麻烦的!!! docx 转成 doc 文件格式!!! 这个试下$folder=FileSelectFolder("请选择文本所在目录","")
If @error Then Exit 0
If StringRight($folder,1)<>"\" Then $folder&="\"
$file=FileFindFirstFile($folder&"\*.doc?")
$wordapp=ObjCreate("word.application")
$wordapp.visible=False
While 1
$currentfile=FileFindNextFile($file)
If @error Then ExitLoop
$currentfile=$folder&$currentfile
If StringRegExp(StringLower($currentfile),"\.doc.$",0)=1 Then
$wd=$wordapp.documents.open($currentfile)
$wd.saveas2(StringLeft($currentfile,StringLen($currentfile)-1),0)
$wd.close
EndIf
WEnd
FileClose($file)
$wordapp.quit
$wordapp=Null
MsgBox(0,"提示","所选目录转换完成!",5) 试试楼上的,应该可以 多谢,我先试下!!! http://www.chaojinengyuanqiangguo.com/bq/16.gif 试过了!!不行啊!! 你是不2003的office没装2007的补丁包 把saveas2改为saveas 可以了,谢谢2楼的 和8楼的兄弟!!!!
页:
[1]