From 1ef6a1d0e4e7912e4da19de44ccdfe5ebe0fbd90 Mon Sep 17 00:00:00 2001 From: mschill Date: Fri, 26 Sep 2025 10:37:30 -0400 Subject: [PATCH] B2025-051 - Quick Print Section is not automatically working unless the sections have applicability --- PROMS/VEPROMS User Interface/frmVEPROMS.cs | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/PROMS/VEPROMS User Interface/frmVEPROMS.cs b/PROMS/VEPROMS User Interface/frmVEPROMS.cs index 2dc29d4b..5278e3e8 100644 --- a/PROMS/VEPROMS User Interface/frmVEPROMS.cs +++ b/PROMS/VEPROMS User Interface/frmVEPROMS.cs @@ -1325,12 +1325,17 @@ namespace VEPROMS prnDlg.SetupForProcedure(); // Setup filename if (quickprint) + { + prnDlg.OverwritePDF = false; // turn off overwriting of PDFs B2025-051 prnDlg.QPCreatePDF(); // Create Print report - else - prnDlg.ShowDialog(this); // Create Print report + } + else + { + prnDlg.ShowDialog(this); // Create Print report + } - //B2025-032 Fix Section not Printing Applicability Properly - si2.MyDocVersion.DocVersionConfig.SelectedSlave = 0; + //B2025-032 Fix Section not Printing Applicability Properly + si2.MyDocVersion.DocVersionConfig.SelectedSlave = 0; si2.MyProcedure.MyDocVersion.DocVersionConfig.SelectedSlave = 0; } } -- 2.49.1