How to fix the caption separators with VBA word
Hi,
I'm currently making a VBA macro which sets the whole word document in a correct style. I only have problems fixing the separators of the captions.
The captions of the tables and the figures allready exist, I just need a macro which corrects all the captions to separators with periods.
I know it has something to do with:
With CaptionLabels("Figure")
.separator = wdSeparatorPeriod
.includeChapterNumber = true
End with
But how to acitivate this for all the captions?
|