This commit is contained in:
2021-08-30 22:42:24 +00:00
parent 2718bebe38
commit dddc1ac7f9
4 changed files with 50 additions and 2 deletions

View File

@@ -36,6 +36,9 @@
this.label2 = new System.Windows.Forms.Label();
this.edTags = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.nTimeOut = new System.Windows.Forms.NumericUpDown();
((System.ComponentModel.ISupportInitialize)(this.nTimeOut)).BeginInit();
this.SuspendLayout();
//
// btnCancel
@@ -116,6 +119,42 @@
this.label1.TabIndex = 41;
this.label1.Text = "Tag all exported objects";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(26, 195);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(165, 13);
this.label3.TabIndex = 43;
this.label3.Text = "Override HTTP timeout (seconds)";
//
// nTimeOut
//
this.nTimeOut.Increment = new decimal(new int[] {
60,
0,
0,
0});
this.nTimeOut.Location = new System.Drawing.Point(29, 211);
this.nTimeOut.Maximum = new decimal(new int[] {
3600,
0,
0,
0});
this.nTimeOut.Minimum = new decimal(new int[] {
30,
0,
0,
0});
this.nTimeOut.Name = "nTimeOut";
this.nTimeOut.Size = new System.Drawing.Size(120, 20);
this.nTimeOut.TabIndex = 44;
this.nTimeOut.Value = new decimal(new int[] {
100,
0,
0,
0});
//
// Opt
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -123,6 +162,8 @@
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(614, 353);
this.ControlBox = false;
this.Controls.Add(this.nTimeOut);
this.Controls.Add(this.label3);
this.Controls.Add(this.label1);
this.Controls.Add(this.edTags);
this.Controls.Add(this.label2);
@@ -135,6 +176,7 @@
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Export options";
this.Load += new System.EventHandler(this.Opt_Load);
((System.ComponentModel.ISupportInitialize)(this.nTimeOut)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
@@ -149,5 +191,7 @@
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox edTags;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.NumericUpDown nTimeOut;
}
}