有了下面这个vba调用Word对话框的代码教程,不懂vba调用Word对话框的代码的也能装懂了,赶紧get起来装逼一下吧!
【 tulaoshi.com - Word教程 】
以下的代码,就是vba调用Word对话框的代码
Sub GetDialogs()
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com)Dim i As Integer
On Error Resume Next
With Application
.ScreenUpdating = False
For i = 1 To 10000
Selection.InsertAfter "对话框" & i & ":" & .Dialogs(i).CommandName & vbCrLf
Next
.ScreenUpdating = True
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com)End With
End Sub
来源:http://www.tulaoshi.com/n/20160219/1589841.html
看过《vba调用Word对话框的代码》的人还看了以下文章 更多>>