关于修改SlideMaster的问题
有用户咨询一下问题:
Sub edtMastr() Dim strNewFoot As String strNewFoot = InputBox(prompt:="Enter the revision number.", _ Title:="Revision", Default:="0") If strNewFoot = "0" Or strNewFoot = vbNullString Then Exit Sub Else If ActivePresentation.HasTitleMaster Then With ActivePresentation.TitleMaster.HeadersFooters .Footer.Text = "Test " & strNewFoot .Footer.Visible = msoTrue End With End If End IfEnd Sub