boar24 / InsertCrossReferencesComfortably

VBA macro to comfortably insert cross references in MS Word
12 stars 1 forks source link

Inserting to always use 1st format #10

Closed AegrumPraesul closed 3 weeks ago

AegrumPraesul commented 3 weeks ago

I was wondering if there's any way to disable the saving feature. Since I need different references at different times and I'd love to be able to swap by multi pressing while having the same document open. Thanks!

boar24 commented 3 weeks ago

Do I understand correctly that you want

so that just "Subsequently added cross references will use the latest format (persistent until Word is exited)." would not apply?

The above behaviour should be achieved (but this is just from looking at the code, without any testing) by inserting the lines

cfgPHeadline=0
cfgPBookmark=0
cfgPFigureTE=0

at the arrow's position: image

AegrumPraesul commented 3 weeks ago

That's exactly it yes! Thank you!