This commit is contained in:
2020-05-11 21:19:58 +00:00
parent 4ef18044e7
commit 6d6c011fa3
8 changed files with 105 additions and 26 deletions

View File

@@ -32,6 +32,8 @@
this.btnCancel = new System.Windows.Forms.Button();
this.btnOk = new System.Windows.Forms.Button();
this.ckExportAssignedDocs = new System.Windows.Forms.CheckBox();
this.lblPreRelease = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btnCancel
@@ -62,13 +64,39 @@
this.ckExportAssignedDocs.Checked = true;
this.ckExportAssignedDocs.CheckState = System.Windows.Forms.CheckState.Checked;
this.ckExportAssignedDocs.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ckExportAssignedDocs.Location = new System.Drawing.Point(26, 61);
this.ckExportAssignedDocs.Location = new System.Drawing.Point(26, 94);
this.ckExportAssignedDocs.Name = "ckExportAssignedDocs";
this.ckExportAssignedDocs.Size = new System.Drawing.Size(401, 21);
this.ckExportAssignedDocs.TabIndex = 27;
this.ckExportAssignedDocs.Text = "Export Assigned documents as Attachments where possible";
this.ckExportAssignedDocs.UseVisualStyleBackColor = true;
//
// lblPreRelease
//
this.lblPreRelease.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.lblPreRelease.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.lblPreRelease.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblPreRelease.ForeColor = System.Drawing.Color.Blue;
this.lblPreRelease.Location = new System.Drawing.Point(94, 9);
this.lblPreRelease.Name = "lblPreRelease";
this.lblPreRelease.Size = new System.Drawing.Size(426, 37);
this.lblPreRelease.TabIndex = 38;
this.lblPreRelease.Text = "Pre-release 7.6-Alpha";
this.lblPreRelease.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// label2
//
this.label2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.label2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.ForeColor = System.Drawing.Color.Red;
this.label2.Location = new System.Drawing.Point(100, 290);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(428, 34);
this.label2.TabIndex = 39;
this.label2.Text = "Export will erase *all* data on AyaNova 8 Server";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// Opt
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -76,6 +104,8 @@
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(614, 353);
this.ControlBox = false;
this.Controls.Add(this.label2);
this.Controls.Add(this.lblPreRelease);
this.Controls.Add(this.ckExportAssignedDocs);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOk);
@@ -83,6 +113,7 @@
this.Name = "Opt";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Export options";
this.Load += new System.EventHandler(this.Opt_Load);
this.ResumeLayout(false);
this.PerformLayout();
@@ -93,5 +124,7 @@
private System.Windows.Forms.Button btnOk;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.CheckBox ckExportAssignedDocs;
private System.Windows.Forms.Label lblPreRelease;
private System.Windows.Forms.Label label2;
}
}