diff --git a/PROMS/fmtxml/FmtToXml.cs b/PROMS/fmtxml/FmtToXml.cs index cd046040..e8e76547 100644 --- a/PROMS/fmtxml/FmtToXml.cs +++ b/PROMS/fmtxml/FmtToXml.cs @@ -778,7 +778,22 @@ namespace fmtxml switch (fname.ToUpper()) { case "RGESAM1.PAG": - /* + /* + * + + + + + + + + + + + + * + * + * @@ -787,39 +802,50 @@ namespace fmtxml */ - + pg.Index=3; pg.Name = "Cover Page"; - PSItem [] psitms = new PSItem[3]; + PSItem [] psitms = new PSItem[4]; PSItem pi = new PSItem(); pi.Token = "{DRAFTPAGE}{REFERENCEPAGE}{MASTERPAGE}{SAMPLEPAGE}"; pi.Row = 12; pi.Col = -2; pi.Justify = "PSCenter"; psitms[0] = pi; - + + PSItem pi0 = new PSItem(); + pi0.Token = "{EOPNUM}"; + pi0.Row = 320; + pi0.Col = 262; + pi0.Justify = "PSCenter"; + pi0.Style = new VE_Font(); + pi0.Style.FontFamily = "Arial"; + pi0.Style.FontSize = "18"; + pi0.Style.CPI = "9"; + psitms[1] = pi0; + PSItem pi1 = new PSItem(); pi1.Token = "{COVERTITLE1}"; - pi1.Row=320; + pi1.Row=350; pi1.Col=282; pi1.Justify="PSTop"; pi1.Style = new VE_Font(); pi1.Style.FontFamily = "Arial"; pi1.Style.FontSize = "18"; pi1.Style.CPI = "9"; - psitms[1] = pi1; + psitms[2] = pi1; PSItem pi2 = new PSItem(); pi2.Token = "{COVERTITLE2}"; - pi2.Row=336; + pi2.Row=366; pi2.Col=282; pi2.Justify="PSCenter"; pi2.Style = new VE_Font(); pi2.Style.FontFamily = "Arial"; pi2.Style.FontSize = "18"; pi2.Style.CPI = "9"; - psitms[2] = pi2; + psitms[3] = pi2; pg.Items = psitms; return pg; break;