Word 2013 ActiveX Command Button Failure
I have a word document (Slate.docm) that was created in ms word 2007 that also works in 2010 but, does not in 2013. The file has 20 sections. The first page has ActiveX command buttons to select sections by number and the others have a return to section 1 command button. 2013 operates okay between sections 1 and 2 but the other section buttons fail after three tries. Toggling Design Mode does a reset for three more tries. The VBA code is the same for all sections except the Count number changes. The code to go to section 2 is:
Private Sub A02SL_Click()
'
' Slates Macro
'
'
Selection.GoTo What:=wdGoToSection, Which:=wdGoToFirst, Count:=2, Name:=""
End Sub
|