This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
' Because inserting cross-references is terrible in Word, these macros | |
' makes life a little easier by selecting the appropriate drop-down boxes | |
' Open issue: NumLock may be disabled | |
Sub InsertFigureReference() | |
' Reference a Figure and insert Only label and number | |
With Application.Dialogs(wdDialogInsertCrossReference) | |
SendKeys "ff{TAB}{DOWN 2}{ENTER}", True | |
.InsertAsHyperLink = 1 | |
.InsertPosition = 0 | |
.Show |