|
想做一个把所有表格全部选中然后在每一页左右对齐,并且表格不会跨页很乱的那种,希望每一页就一个表格,然后网上搜索先弄了一个居中然后全部选中的,然后现在是手动点了取消允许跨页断格的选项把表格调成一页一页的, 但是同事的电脑用不了,会闪退。
因为文件公司不允许发,只有放个图,这个其实就是一个一个表格,第一排第二个是标准的一页一个,后面就是乱的,想通过macro完成整理。
大神请帮忙看看这个代码有什么问题, 为什么经常会闪退
Sub ABP()
Dim tempTable As Table
Application.ScreenUpdating = False
'删除所有可编辑的区域
ActiveDocument.DeleteAllEditableRanges wdEditorEveryone
'添加可编辑区域
For Each tempTable In ActiveDocument.Tables
tempTable.Range.Editors.Add wdEditorEveryone
Next
'选中所有可编辑区域
ActiveDocument.SelectAllEditableRanges wdEditorEveryone
'删除所有可编辑的区域
ActiveDocument.DeleteAllEditableRanges wdEditorEveryone
Application.ScreenUpdating = True
Dim doc As Document, myTable As Table
Set doc = ActiveDocument
If doc.Tables.Count = 0 Then Exit Sub
For Each myTable In doc.Tables
myTable.Range.Rows.Alignment = wdAlignRowCenter
Next
Application.ScreenUpdating = False
'删除所有可编辑的区域
ActiveDocument.DeleteAllEditableRanges wdEditorEveryone
'添加可编辑区域
For Each tempTable In ActiveDocument.Tables
tempTable.Range.Editors.Add wdEditorEveryone
Next
'选中所有可编辑区域
ActiveDocument.SelectAllEditableRanges wdEditorEveryone
'删除所有可编辑的区域
ActiveDocument.DeleteAllEditableRanges wdEditorEveryone
Application.ScreenUpdating = True
End Sub
|
|