VBA
Lisazz25
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
刪除Word全部文字方塊
Sub DeleteAllDocInfoShapes()Dim oShp As Word.ShapeDim i As LongvResponse = MsgBox("Delete All DocInfoShapes ? ", vbYesNoCancel, "刪除文字方塊")For i = ActiveDocument.Shapes.Count To 1 Step -1Set o转载 2014-09-11 11:42:16 · 4204 阅读 · 0 评论 -
分割【節】Word
Sub SplitSectionsAsDocuments()'' 分文件'' Dim oSrcDoc As Document, oNewDoc As Document Dim strSrcName As String, strNewName As String Dim oRange As Range Dim nIndex As Integer转载 2015-01-09 09:49:34 · 510 阅读 · 0 评论 -
How to Login Automatically into Website Using Excel VBA
1.出處2. CodeSub Auto_Open() ‘打開EXCEL時'Application.Visible = False'MsgBox Workbooks.CountCall cga If Workbooks.Count Application.Quit End IfApplication.DisplayAlerts = False W转载 2016-01-18 17:17:55 · 665 阅读 · 0 评论 -
word文档如何批量修改图片大小
參考:http://www.360doc.com/content/10/0921/22/2619988_55466952.shtmlSub FormatPics() Dim iSha As InlineShape For Each iSha In ActiveDocument.InlineShapes If iSha.Type = wdInlin转载 2016-05-26 14:41:44 · 4132 阅读 · 0 评论
分享