diff --git a/PROMS/Formats/fmtall/BGEOIall.xml b/PROMS/Formats/fmtall/BGEOIall.xml index e2080df3..0516afc2 100644 Binary files a/PROMS/Formats/fmtall/BGEOIall.xml and b/PROMS/Formats/fmtall/BGEOIall.xml differ diff --git a/PROMS/Formats/fmtall/BGEVLall.xml b/PROMS/Formats/fmtall/BGEVLall.xml index 6f91a0aa..628864aa 100644 Binary files a/PROMS/Formats/fmtall/BGEVLall.xml and b/PROMS/Formats/fmtall/BGEVLall.xml differ diff --git a/PROMS/VEPROMS.CSLA.Library/Format/ENums.cs b/PROMS/VEPROMS.CSLA.Library/Format/ENums.cs index db58df04..8cd66472 100644 --- a/PROMS/VEPROMS.CSLA.Library/Format/ENums.cs +++ b/PROMS/VEPROMS.CSLA.Library/Format/ENums.cs @@ -109,7 +109,8 @@ namespace VEPROMS.CSLA.Library WithStepsAndSecondaryPageNumber = 7, WithStepsAndSecondaryPageNumberGroupedByLevel = 8, Like6_ButDoesntNeedSubsection = 9, - Like6_ButDoesntNeedSubsection1 = 10 + Like6_ButDoesntNeedSubsection1 = 10, + WithinEachSectionNumber = 11 }; public enum E_ContBottomLoc : uint { diff --git a/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs b/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs index 87f57eb2..765092e2 100644 --- a/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs +++ b/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs @@ -1005,6 +1005,9 @@ namespace Volian.Print.Library case E_NumberingSequence.WithinEachSection: key = key + "." + MySection.ItemID; break; + case E_NumberingSequence.WithinEachSectionNumber: + key = key + "." + MySection.DisplayNumber; + break; case E_NumberingSequence.GroupedByLevel: case E_NumberingSequence.Like6_ButDoesntNeedSubsection: if (MySection.MyParent.IsSection)