Board logo

标题: [问题求助] VBS如何自动压缩doc、PPT文件中的图片? [打印本页]

作者: mxxcgzxxx    时间: 2012-12-3 09:26     标题: VBS如何自动压缩doc、PPT文件中的图片?

如上图所示,如何才能让VB做到相同的功能?
最好能自动查找指定目录下的所有doc和ppt文件并对其进行操作。
因为学校共享资源里的文件太多了,手动太慢,望高手解救。
作者: czjt1234    时间: 2012-12-3 17:45

查找文件,用WSH.SendKeys模拟键盘操作
作者: zz100001    时间: 2012-12-3 18:17

找了一下网上的帖子,发现sendkeys不给力,只能弹出来自己一个个点了,还是节省了点工作,你可以看看相关的东西
  1. 'http://social.msdn.microsoft.com/Forums/en-US/isvvba/thread/4fbbd7e1-7ff1-4c97-a53b-eeef490b5e5c
  2. docsfolder = "C:\Users\Administrator\Desktop\docs"
  3. Set fso = CreateObject("Scripting.FileSystemObject")
  4. Set word = CreateObject("Word.Application")
  5.   word.Visible = True
  6. FindDocs docsfolder
  7. word.Quit
  8. Sub OpenOneDoc(sExactPath)
  9.   With word
  10.     .Documents.Open sExactPath, False, False
  11.     .Application.CommandBars.FindControl(1, 6382).Execute
  12.     ' wdDoNotSaveChanges = 0, wdPromptToSaveChanges = -2, wdSaveChanges = -1
  13.     .ActiveDocument.Close -1
  14.   End With
  15. End Sub
  16. Sub FindDocs(folderspec)  
  17.   Dim f, f1, fc, s
  18.   If Not fso.FolderExists(folderspec) Then
  19.     MsgBox "文件夹不存在"  
  20.     WScript.Quit
  21.   else  
  22.     Set f = fso.GetFolder(folderspec)
  23.     Set fc = f.files
  24.     For Each f1 in fc
  25.       If LCase(Right(f1.Path, 4)) = ".doc" Or LCase(Right(f1.Path, 5)) = ".docx" Then
  26.         OpenOneDoc f1.Path
  27.       End If
  28.     Next
  29.     Set ff=f.SubFolders  
  30.     For Each f2 in ff  
  31.       FindDocs f2.Path
  32.     Next
  33.   End If
  34. End Sub
复制代码

作者: mxxcgzxxx    时间: 2012-12-4 15:14

先谢,再等看看有没有更好用的!顶起来




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2