Added PDF SaveLink checkbox and methods

Added PDF SaveLink parameter to methods
Added internal tool to select existing user.
This commit is contained in:
Rich
2015-06-17 11:30:22 +00:00
parent 9bc892a040
commit ee198b5275
4 changed files with 37 additions and 7 deletions

View File

@@ -97,6 +97,7 @@ namespace VEPROMS
this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip();
this.cbxBlankPgsForDuplex = new System.Windows.Forms.CheckBox();
this.cbxGeneratePlacekeeper = new System.Windows.Forms.CheckBox();
this.cbxPDFLinks = new System.Windows.Forms.CheckBox();
((System.ComponentModel.ISupportInitialize)(this.tabControl1)).BeginInit();
this.tabControl1.SuspendLayout();
this.tabControlPanel3.SuspendLayout();
@@ -1199,6 +1200,21 @@ namespace VEPROMS
this.cbxGeneratePlacekeeper.Text = "Generate Placekeeper";
this.cbxGeneratePlacekeeper.UseVisualStyleBackColor = false;
//
// cbxPDFLinks
//
this.cbxPDFLinks.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.cbxPDFLinks.AutoSize = true;
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(350, 298);
this.cbxPDFLinks.Margin = new System.Windows.Forms.Padding(2);
this.cbxPDFLinks.Name = "cbxPDFLinks";
this.cbxPDFLinks.Size = new System.Drawing.Size(169, 19);
this.cbxPDFLinks.TabIndex = 101;
this.cbxPDFLinks.Text = "PDF Links";
this.cbxPDFLinks.UseVisualStyleBackColor = false;
//
// DlgPrintProcedure
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -1206,6 +1222,7 @@ namespace VEPROMS
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(617, 339);
this.Controls.Add(this.cbxGeneratePlacekeeper);
this.Controls.Add(this.cbxPDFLinks);
this.Controls.Add(this.cbxBlankPgsForDuplex);
this.Controls.Add(this.cbxOrPgBrk);
this.Controls.Add(this.cbxDebug);
@@ -1312,5 +1329,6 @@ namespace VEPROMS
private DevComponents.DotNetBar.Controls.ProgressBarX pbPDFsStatus;
private System.Windows.Forms.CheckBox cbxBlankPgsForDuplex;
private System.Windows.Forms.CheckBox cbxGeneratePlacekeeper;
private System.Windows.Forms.CheckBox cbxPDFLinks;
}
}