Added option to Remove Trailing Hard Returns and Manual Page Breaks

Added Server and Database to Window Caption (Title)
This commit is contained in:
Rich
2016-01-20 20:17:16 +00:00
parent 116e10218d
commit 9e170362cc
7 changed files with 55 additions and 10 deletions

View File

@@ -96,6 +96,7 @@ namespace VEPROMS
this.cbxBlankPgsForDuplex = new System.Windows.Forms.CheckBox();
this.cbxGeneratePlacekeeper = new System.Windows.Forms.CheckBox();
this.cbxPDFLinks = new System.Windows.Forms.CheckBox();
this.cbxRemoveManualPageBreaks = new System.Windows.Forms.CheckBox();
this.cbxGenerateConActSum = new System.Windows.Forms.CheckBox();
((System.ComponentModel.ISupportInitialize)(this.tabControl1)).BeginInit();
this.tabControl1.SuspendLayout();
@@ -1147,7 +1148,7 @@ namespace VEPROMS
this.cbxBlankPgsForDuplex.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.docVersionConfigBindingSource, "Print_AlwaysOverwritePDF", true));
this.cbxBlankPgsForDuplex.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cbxBlankPgsForDuplex.ForeColor = System.Drawing.SystemColors.ControlText;
this.cbxBlankPgsForDuplex.Location = new System.Drawing.Point(138, 332);
this.cbxBlankPgsForDuplex.Location = new System.Drawing.Point(138, 340);
this.cbxBlankPgsForDuplex.Margin = new System.Windows.Forms.Padding(2);
this.cbxBlankPgsForDuplex.Name = "cbxBlankPgsForDuplex";
this.cbxBlankPgsForDuplex.Size = new System.Drawing.Size(323, 19);
@@ -1177,7 +1178,7 @@ namespace VEPROMS
this.cbxPDFLinks.BackColor = System.Drawing.Color.Transparent;
this.cbxPDFLinks.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cbxPDFLinks.ForeColor = System.Drawing.SystemColors.ControlText;
this.cbxPDFLinks.Location = new System.Drawing.Point(138, 309);
this.cbxPDFLinks.Location = new System.Drawing.Point(138, 323);
this.cbxPDFLinks.Margin = new System.Windows.Forms.Padding(2);
this.cbxPDFLinks.Name = "cbxPDFLinks";
this.cbxPDFLinks.Size = new System.Drawing.Size(91, 19);
@@ -1185,6 +1186,21 @@ namespace VEPROMS
this.cbxPDFLinks.Text = "PDF Links";
this.cbxPDFLinks.UseVisualStyleBackColor = false;
//
// cbxRemoveManualPageBreaks
//
this.cbxRemoveManualPageBreaks.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.cbxRemoveManualPageBreaks.AutoSize = true;
this.cbxRemoveManualPageBreaks.BackColor = System.Drawing.Color.Transparent;
this.cbxRemoveManualPageBreaks.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cbxRemoveManualPageBreaks.ForeColor = System.Drawing.SystemColors.ControlText;
this.cbxRemoveManualPageBreaks.Location = new System.Drawing.Point(138, 306);
this.cbxRemoveManualPageBreaks.Margin = new System.Windows.Forms.Padding(2);
this.cbxRemoveManualPageBreaks.Name = "cbxRemoveManualPageBreaks";
this.cbxRemoveManualPageBreaks.Size = new System.Drawing.Size(91, 19);
this.cbxRemoveManualPageBreaks.TabIndex = 101;
this.cbxRemoveManualPageBreaks.Text = "Remove Trailing Hard Returns && Manual Page Breaks";
this.cbxRemoveManualPageBreaks.UseVisualStyleBackColor = false;
//
// cbxGenerateConActSum
//
this.cbxGenerateConActSum.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
@@ -1210,6 +1226,7 @@ namespace VEPROMS
this.Controls.Add(this.cbxGenerateConActSum);
this.Controls.Add(this.cbxGeneratePlacekeeper);
this.Controls.Add(this.cbxPDFLinks);
this.Controls.Add(this.cbxRemoveManualPageBreaks);
this.Controls.Add(this.cbxBlankPgsForDuplex);
this.Controls.Add(this.cbxOrPgBrk);
this.Controls.Add(this.cbxDebug);
@@ -1315,6 +1332,7 @@ namespace VEPROMS
private System.Windows.Forms.CheckBox cbxBlankPgsForDuplex;
private System.Windows.Forms.CheckBox cbxGeneratePlacekeeper;
private System.Windows.Forms.CheckBox cbxPDFLinks;
private System.Windows.Forms.CheckBox cbxRemoveManualPageBreaks;
private DevComponents.DotNetBar.ButtonX btnPdfLocation;
private System.Windows.Forms.CheckBox cbxGenerateConActSum;
}