gesamtlänge wird erfasst

This commit is contained in:
HuskyTeufel
2020-06-25 16:24:05 +02:00
parent de5af70dd0
commit d9431ef400
26 changed files with 792 additions and 107 deletions

View File

@@ -40,6 +40,9 @@
this.btn_save = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.txt_dn = new System.Windows.Forms.TextBox();
this.txt_liner_laenge = new System.Windows.Forms.TextBox();
this.label5 = new System.Windows.Forms.Label();
this.cb_vorhanden = new System.Windows.Forms.CheckBox();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
@@ -78,7 +81,7 @@
this.groupBox2.Controls.Add(this.mtxt_impanfang_datum);
this.groupBox2.Controls.Add(this.label8);
this.groupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.groupBox2.Location = new System.Drawing.Point(12, 193);
this.groupBox2.Location = new System.Drawing.Point(17, 225);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(315, 91);
this.groupBox2.TabIndex = 8;
@@ -91,7 +94,7 @@
this.mtxt_impanfang_datum.Mask = "00/00/0000";
this.mtxt_impanfang_datum.Name = "mtxt_impanfang_datum";
this.mtxt_impanfang_datum.Size = new System.Drawing.Size(192, 30);
this.mtxt_impanfang_datum.TabIndex = 5;
this.mtxt_impanfang_datum.TabIndex = 6;
this.mtxt_impanfang_datum.ValidatingType = typeof(System.DateTime);
//
// label8
@@ -134,7 +137,7 @@
this.btn_save.Location = new System.Drawing.Point(440, 6);
this.btn_save.Name = "btn_save";
this.btn_save.Size = new System.Drawing.Size(209, 278);
this.btn_save.TabIndex = 6;
this.btn_save.TabIndex = 7;
this.btn_save.Text = "Speichern";
this.btn_save.UseVisualStyleBackColor = true;
this.btn_save.Click += new System.EventHandler(this.Btn_save_Click);
@@ -157,11 +160,43 @@
this.txt_dn.Size = new System.Drawing.Size(100, 30);
this.txt_dn.TabIndex = 4;
//
// txt_liner_laenge
//
this.txt_liner_laenge.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txt_liner_laenge.Location = new System.Drawing.Point(213, 180);
this.txt_liner_laenge.Name = "txt_liner_laenge";
this.txt_liner_laenge.Size = new System.Drawing.Size(157, 30);
this.txt_liner_laenge.TabIndex = 5;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label5.Location = new System.Drawing.Point(12, 180);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(115, 25);
this.label5.TabIndex = 22;
this.label5.Text = "Liner Länge";
//
// cb_vorhanden
//
this.cb_vorhanden.AutoSize = true;
this.cb_vorhanden.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cb_vorhanden.Location = new System.Drawing.Point(17, 322);
this.cb_vorhanden.Name = "cb_vorhanden";
this.cb_vorhanden.Size = new System.Drawing.Size(131, 29);
this.cb_vorhanden.TabIndex = 23;
this.cb_vorhanden.Text = "Vorhanden";
this.cb_vorhanden.UseVisualStyleBackColor = true;
//
// frmImprägnierBerichtEdit
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(671, 294);
this.ClientSize = new System.Drawing.Size(671, 387);
this.Controls.Add(this.cb_vorhanden);
this.Controls.Add(this.label5);
this.Controls.Add(this.txt_liner_laenge);
this.Controls.Add(this.txt_dn);
this.Controls.Add(this.label2);
this.Controls.Add(this.btn_save);
@@ -196,5 +231,8 @@
private System.Windows.Forms.MaskedTextBox mtxt_impanfang_datum;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txt_dn;
private System.Windows.Forms.TextBox txt_liner_laenge;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.CheckBox cb_vorhanden;
}
}