Compare commits
No commits in common. "24597b0aa162c715cbb811383b8d56263e53ded2" and "dece3b55147ef871efde3592a350a245973c611d" have entirely different histories.
24597b0aa1
...
dece3b5514
@ -376,7 +376,6 @@
|
||||
<Content Include="fmtall\wst1all.xml" />
|
||||
<Content Include="fmtall\wst2all.xml" />
|
||||
<Content Include="fmtall\wstalrall.xml" />
|
||||
<Content Include="fmtall\VEGPBckall.xml" />
|
||||
<Content Include="fmtall\wstbckall.xml" />
|
||||
<Content Include="fmtall\wstcklall.xml" />
|
||||
<Content Include="fmtall\wstdcsall.xml" />
|
||||
@ -511,7 +510,6 @@
|
||||
<Content Include="genmacall\shervsu.svg" />
|
||||
<Content Include="genmacall\shesam.svg" />
|
||||
<Content Include="genmacall\shessd.svg" />
|
||||
<Content Include="genmacall\VEGPBck.svg" />
|
||||
<Content Include="genmacall\VEGP1.svg" />
|
||||
<Content Include="genmacall\VEGP2.svg" />
|
||||
<Content Include="genmacall\VEGPAlr.svg" />
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -24,7 +24,6 @@
|
||||
using System;
|
||||
using System.Drawing;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Windows.Forms;
|
||||
using System.IO;
|
||||
@ -141,26 +140,11 @@ namespace CmpRpt
|
||||
// for the Access database.
|
||||
string roIdArg = BuildROList(args);
|
||||
string[] roIDList = roIdArg.Split(',');
|
||||
|
||||
// If the args array contains more than 3 elements remove the extra ones. The fourth argument (PC=...) is handled in the BuildROList
|
||||
// method above. If the args array contains more than 3 elements the working dir will not be correctly be set and the report will fail.
|
||||
// The calling code file (DisplayReports.cs) at this time will only send up to 4 args.
|
||||
|
||||
//List<string> args2 = new List<string>(args);
|
||||
//for (int i = 0; i < args2.Count; i++)
|
||||
// {
|
||||
// if (i > 2) {
|
||||
// args2.RemoveAt(i);
|
||||
// }
|
||||
// }
|
||||
////args2.RemoveAt(3);
|
||||
//args = args2.ToArray();
|
||||
|
||||
//if (args.Length == 2 || args.Length == 3)
|
||||
//{
|
||||
if (args.Length == 2 || args.Length == 3)
|
||||
{
|
||||
string path = args[0];
|
||||
Directory.SetCurrentDirectory(path);
|
||||
//}
|
||||
}
|
||||
if (SqlConnectionStr != null)
|
||||
myrodb = new SqlRODB(Directory.GetCurrentDirectory(), SqlConnectionStr, false);
|
||||
else
|
||||
|
@ -1,31 +0,0 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.32901.82
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CmpRpt", "CmpRpt.csproj", "{C4293263-EA9C-11D6-8515-00A0CC271352}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|x86 = Debug|x86
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{C4293263-EA9C-11D6-8515-00A0CC271352}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{C4293263-EA9C-11D6-8515-00A0CC271352}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{C4293263-EA9C-11D6-8515-00A0CC271352}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{C4293263-EA9C-11D6-8515-00A0CC271352}.Debug|x86.Build.0 = Debug|x86
|
||||
{C4293263-EA9C-11D6-8515-00A0CC271352}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{C4293263-EA9C-11D6-8515-00A0CC271352}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{C4293263-EA9C-11D6-8515-00A0CC271352}.Release|x86.ActiveCfg = Release|x86
|
||||
{C4293263-EA9C-11D6-8515-00A0CC271352}.Release|x86.Build.0 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {14F0328F-5103-43E9-AFED-8510A6098931}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
@ -1,6 +1,6 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.32901.82
|
||||
# Visual Studio 2013
|
||||
VisualStudioVersion = 12.0.30723.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ROEditor", "ROEditor.csproj", "{3A4A3543-2D44-11D6-8452-00A0CC271352}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
@ -38,6 +38,43 @@ EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Utils", "..\..\..\LibSource\Utils\Utils.csproj", "{680054D3-49C4-40E7-92A5-67B97DCE6308}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SourceCodeControl) = preSolution
|
||||
SccNumberOfProjects = 11
|
||||
SccProjectName0 = \u0022$/PROMS/ReferencedObjects/ROEditor\u0022,\u0020XSEAAAAA
|
||||
SccLocalPath0 = ..\\..\\..
|
||||
SccProvider0 = MSSCCI:Microsoft\u0020Visual\u0020SourceSafe
|
||||
SccProjectFilePathRelativizedFromConnection0 = Exe\\RefObj\\ROEditor\\
|
||||
SccProjectUniqueName1 = ROEditor.csproj
|
||||
SccLocalPath1 = ..\\..\\..
|
||||
SccProjectFilePathRelativizedFromConnection1 = Exe\\RefObj\\ROEditor\\
|
||||
SccProjectUniqueName2 = ..\\..\\..\\LibSource\\ctlXMLEditLib\\ctlXMLEditLib.csproj
|
||||
SccLocalPath2 = ..\\..\\..
|
||||
SccProjectFilePathRelativizedFromConnection2 = LibSource\\ctlXMLEditLib\\
|
||||
SccProjectUniqueName3 = ..\\..\\..\\LibSource\\DBEncapsulation\\DBEncapsulation.csproj
|
||||
SccLocalPath3 = ..\\..\\..
|
||||
SccProjectFilePathRelativizedFromConnection3 = LibSource\\DBEncapsulation\\
|
||||
SccProjectUniqueName4 = ..\\..\\..\\LibSource\\Org.Mentalis.Files\\Org.Mentalis.Files.csproj
|
||||
SccLocalPath4 = ..\\..\\..
|
||||
SccProjectFilePathRelativizedFromConnection4 = LibSource\\Org.Mentalis.Files\\
|
||||
SccProjectUniqueName5 = ..\\..\\..\\LibSource\\RODBInterface\\RODBInterface.csproj
|
||||
SccLocalPath5 = ..\\..\\..
|
||||
SccProjectFilePathRelativizedFromConnection5 = LibSource\\RODBInterface\\
|
||||
SccProjectUniqueName6 = ..\\..\\..\\LibSource\\ROField\\ROFields.csproj
|
||||
SccLocalPath6 = ..\\..\\..
|
||||
SccProjectFilePathRelativizedFromConnection6 = LibSource\\ROField\\
|
||||
SccProjectUniqueName7 = ..\\..\\..\\LibSource\\ROFST\\ROFST.csproj
|
||||
SccLocalPath7 = ..\\..\\..
|
||||
SccProjectFilePathRelativizedFromConnection7 = LibSource\\ROFST\\
|
||||
SccProjectUniqueName8 = ..\\..\\..\\LibSource\\Utils\\Utils.csproj
|
||||
SccLocalPath8 = ..\\..\\..
|
||||
SccProjectFilePathRelativizedFromConnection8 = LibSource\\Utils\\
|
||||
SccProjectUniqueName9 = ..\\..\\..\\LibSource\\VlnProfiler\\VlnProfiler.csproj
|
||||
SccLocalPath9 = ..\\..\\..
|
||||
SccProjectFilePathRelativizedFromConnection9 = LibSource\\VlnProfiler\\
|
||||
SccProjectUniqueName10 = ..\\..\\..\\LibSource\\VlnStatus\\VlnStatus.csproj
|
||||
SccLocalPath10 = ..\\..\\..
|
||||
SccProjectFilePathRelativizedFromConnection10 = LibSource\\VlnStatus\\
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|Mixed Platforms = Debug|Mixed Platforms
|
||||
@ -187,26 +224,4 @@ Global
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {4814B42F-2708-4185-8450-20347EB2FDF6}
|
||||
EndGlobalSection
|
||||
GlobalSection(SourceCodeControl) = preSolution
|
||||
SccNumberOfProjects = 5
|
||||
SccProjectName0 = \u0022$/PROMS/ReferencedObjects/ROEditor\u0022,\u0020XSEAAAAA
|
||||
SccLocalPath0 = ..\\..\\..
|
||||
SccProvider0 = MSSCCI:Microsoft\u0020Visual\u0020SourceSafe
|
||||
SccProjectFilePathRelativizedFromConnection0 = Exe\\RefObj\\ROEditor\\
|
||||
SccProjectUniqueName1 = ..\\..\\..\\LibSource\\Org.Mentalis.Files\\Org.Mentalis.Files.csproj
|
||||
SccLocalPath1 = ..\\..\\..
|
||||
SccProjectFilePathRelativizedFromConnection1 = LibSource\\Org.Mentalis.Files\\
|
||||
SccProjectUniqueName2 = ..\\..\\..\\LibSource\\ROFST\\ROFST.csproj
|
||||
SccLocalPath2 = ..\\..\\..
|
||||
SccProjectFilePathRelativizedFromConnection2 = LibSource\\ROFST\\
|
||||
SccProjectUniqueName3 = ..\\..\\..\\LibSource\\Utils\\Utils.csproj
|
||||
SccLocalPath3 = ..\\..\\..
|
||||
SccProjectFilePathRelativizedFromConnection3 = LibSource\\Utils\\
|
||||
SccProjectUniqueName4 = ..\\..\\..\\LibSource\\VlnProfiler\\VlnProfiler.csproj
|
||||
SccLocalPath4 = ..\\..\\..
|
||||
SccProjectFilePathRelativizedFromConnection4 = LibSource\\VlnProfiler\\
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
@ -1,31 +0,0 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.32901.82
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ROEditor", "ROEditor.csproj", "{3A4A3543-2D44-11D6-8452-00A0CC271352}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|x86 = Debug|x86
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{3A4A3543-2D44-11D6-8452-00A0CC271352}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{3A4A3543-2D44-11D6-8452-00A0CC271352}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{3A4A3543-2D44-11D6-8452-00A0CC271352}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{3A4A3543-2D44-11D6-8452-00A0CC271352}.Debug|x86.Build.0 = Debug|x86
|
||||
{3A4A3543-2D44-11D6-8452-00A0CC271352}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{3A4A3543-2D44-11D6-8452-00A0CC271352}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{3A4A3543-2D44-11D6-8452-00A0CC271352}.Release|x86.ActiveCfg = Release|x86
|
||||
{3A4A3543-2D44-11D6-8452-00A0CC271352}.Release|x86.Build.0 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {7CEE041D-449C-4B54-B381-6845BD8E9B79}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
@ -1,31 +0,0 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.32901.82
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RODBInterface", "RODBInterface.csproj", "{0C7825FD-AA05-11D6-84D1-00A0CC271352}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|x86 = Debug|x86
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{0C7825FD-AA05-11D6-84D1-00A0CC271352}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{0C7825FD-AA05-11D6-84D1-00A0CC271352}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{0C7825FD-AA05-11D6-84D1-00A0CC271352}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{0C7825FD-AA05-11D6-84D1-00A0CC271352}.Debug|x86.Build.0 = Debug|x86
|
||||
{0C7825FD-AA05-11D6-84D1-00A0CC271352}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{0C7825FD-AA05-11D6-84D1-00A0CC271352}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{0C7825FD-AA05-11D6-84D1-00A0CC271352}.Release|x86.ActiveCfg = Release|x86
|
||||
{0C7825FD-AA05-11D6-84D1-00A0CC271352}.Release|x86.Build.0 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {59F24713-865F-46BB-907B-46D78C3F7DA4}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
@ -1,25 +0,0 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.32901.82
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RoAccessToSql", "RoAccessToSql.csproj", "{1EC96BDA-01E7-4153-A95D-6A4A36FA278E}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{1EC96BDA-01E7-4153-A95D-6A4A36FA278E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{1EC96BDA-01E7-4153-A95D-6A4A36FA278E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{1EC96BDA-01E7-4153-A95D-6A4A36FA278E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{1EC96BDA-01E7-4153-A95D-6A4A36FA278E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {066122E2-5ED5-4DD3-B04E-C2350F0818B1}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
@ -44,9 +44,8 @@ using System.Runtime.InteropServices;
|
||||
// Revision DHH (day - no leading zero, two digit hour - military time
|
||||
//
|
||||
// ********* REMEMBER TO CHECK THE AssemblyConfiguration SETTING (ABOVE) ********
|
||||
[assembly: AssemblyVersion("2.1.2311.3014")]
|
||||
[assembly: AssemblyFileVersion("2.1.2311.3014")]
|
||||
|
||||
[assembly: AssemblyVersion("2.1.2308.2414")]
|
||||
[assembly: AssemblyFileVersion("2.1.2308.2414")]
|
||||
|
||||
|
||||
|
||||
|
@ -1389,11 +1389,6 @@ namespace VEPROMS
|
||||
exelocation = exelocation.Substring(0, exelocation.LastIndexOf("\\")) + @"\RoAccessToSql.exe";
|
||||
int indx = tbRoDb.Text.IndexOf(" (") + 2;
|
||||
string accesspath = tbRoDb.Text.Substring(indx, tbRoDb.Text.Length - indx - 1);
|
||||
if (accesspath.IndexOf(" ") > -1) // B2023-120 If there is a space in the path enclose path in double quotes.
|
||||
{
|
||||
accesspath = '"' + accesspath + '"';
|
||||
}
|
||||
|
||||
string sqldb = Database.ActiveDatabase;
|
||||
indx = Database.DBServer.IndexOf(" ");
|
||||
string server = Database.DBServer.Substring(0, indx);
|
||||
|
@ -442,7 +442,7 @@ namespace Volian.Controls.Library
|
||||
|
||||
chld = ch.children;
|
||||
|
||||
rtnStr = _MyRODbID.ToString() + ":" + GetROChildren(rolkup).TrimEnd(','); // GetROChildren(rolkup).TrimEnd(',') grabs the children of the selected item
|
||||
rtnStr = _MyRODbID.ToString() + ":" + GetROChildren(rolkup).TrimEnd(',');
|
||||
}
|
||||
|
||||
ROList.Add(rtnStr);
|
||||
|
@ -433,10 +433,7 @@ namespace Volian.Print.Library
|
||||
if (mySize < Height) mySize = Height * MyPageHelper.YMultiplier;
|
||||
}
|
||||
float yExtra2 = (SixLinesPerInch - MyItemInfo.MyDocStyle.Layout.FooterLength) ?? 0;
|
||||
// B2023-116: Vogtle alarm pagination - sub-steps are separating from their HLS even if there is room for some (not all). If using the AlarmPagination
|
||||
// flag AND this is a high level flag do not set the 'KeepStepsOnPage' to false, this allows the logic to check where pagination should occur for sub-steps
|
||||
bool alarmPageKeepHighWithSubs = MyItemInfo.ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.StepSectionLayoutData.AlarmPagination && MyItemInfo.IsHigh;
|
||||
if (KeepStepsOnPage && !alarmPageKeepHighWithSubs && !MyItemInfo.ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.StepSectionLayoutData.PaginateOnLowerStepLevel && ySizeIncludingFirst > yWithinMargins)
|
||||
if (KeepStepsOnPage && !MyItemInfo.ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.StepSectionLayoutData.PaginateOnLowerStepLevel && ySizeIncludingFirst > yWithinMargins)
|
||||
KeepStepsOnPage = false;
|
||||
// B2020-123: Missing section continue message
|
||||
// B2020-158 Calvert Approved Unit1 EOP-8/Appendix(1)/subsection RIC-2/Step A was printing by itself on bottom of page
|
||||
@ -569,9 +566,7 @@ namespace Volian.Print.Library
|
||||
KeepStepsOnPage = false;
|
||||
}
|
||||
}
|
||||
// B2023-116: Vogtle alarm pagination - sub-steps are separating from their HLS even if there is room for some (not all). See comment above for setting of
|
||||
// 'alarmPageKeepHighWithSubs'.
|
||||
if (KeepStepsOnPage && !alarmPageKeepHighWithSubs && ySizeIncludingFirst > (yWithinMargins - ySizeBtmCtnMess1 - ySizeBtmEndMess1)) KeepStepsOnPage = false;
|
||||
if (KeepStepsOnPage && ySizeIncludingFirst > (yWithinMargins - ySizeBtmCtnMess1 - ySizeBtmEndMess1)) KeepStepsOnPage = false;
|
||||
if (!KeepWithHeader && !KeepStepsOnPage && mySize - SixLinesPerInch + yEndMsg - tableSpaceAvailable <= yPageSizeNextPage) // if the entire step can fit on one page, do a page break
|
||||
{
|
||||
// Don't want extra line before step
|
||||
|
@ -2823,30 +2823,6 @@ namespace Volian.Print.Library
|
||||
ItemInfo parentStep = MyItemInfo.MyHLS; // get the high level step
|
||||
myMsg = string.Format(myMsg, parentStep.CombinedTab, parentStep.DisplayTextKeepSpecialChars);
|
||||
}
|
||||
if ((docstyle.Continue.Top.HLS ?? 0) == 4) // B2023-115 Top continue message for Vogtle Alarms
|
||||
{
|
||||
// Vogtle Alarms: Their alarms are set up differently than standard procedures - the HLS in Vogtle
|
||||
// alarms is a section in other procedures. The top continue message is shown when a break occurs between
|
||||
// first level sub-steps '(continued)' with no step number as part of message' within the first level sub-step
|
||||
// only if it is sequential (which is like a HLS in standard procedures) and the continue message
|
||||
// has the first level sub-step's tab. There should be NO continue message if the break occurs at the HLS.
|
||||
ItemInfo cur = MyItemInfo;
|
||||
if (!(cur.IsCaution || cur.IsNote || cur.IsHigh))
|
||||
while (!cur.MyParent.IsHigh) cur = cur.MyParent; // get to the first level substep to get its tab
|
||||
myMsg = docstyle.Continue.Top.Message;
|
||||
// if within first level sequential, add on the sequential's number:
|
||||
if (!cur.IsHigh && cur.IsSequential && MyItemInfo.MyParent.MyParent.IsHigh)
|
||||
{
|
||||
ItemInfo parentStep = MyItemInfo.MyParent;
|
||||
myMsg = MyItemInfo.IsHigh ? myMsg : parentStep.CombinedTab + ". " + myMsg;
|
||||
}
|
||||
// don't put a message out for HLS, note that the page start is decremented above so need to add that amount back on
|
||||
if (MyItemInfo.IsHigh)
|
||||
{
|
||||
myMsg = "";
|
||||
yPageStart += 2 * SixLinesPerInch;
|
||||
}
|
||||
}
|
||||
// B2021-138: Top continue message for Barakah Single column New (2021) format was incorrect for some lower
|
||||
// sub-steps.
|
||||
if ((docstyle.Continue.Top.HLS ?? 0) == 6)
|
||||
|
Loading…
x
Reference in New Issue
Block a user