Man kann jetzt einen Ausrduck erzeugen für das ausgeben einer Kalibrierliste

This commit is contained in:
Husky
2018-07-14 14:03:26 +02:00
parent f7e3042daa
commit d87c3d5971
10 changed files with 231 additions and 68 deletions

View File

@@ -47,6 +47,8 @@
this.label5 = new System.Windows.Forms.Label();
this.lbl_grounddata = new System.Windows.Forms.Label();
this.gb_error_messages = new System.Windows.Forms.GroupBox();
this.btn_search = new System.Windows.Forms.Button();
this.btn_make_ausdruck = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.dGObjekte)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.strasseBindingSource)).BeginInit();
this.gb_error_messages.SuspendLayout();
@@ -222,11 +224,32 @@
this.gb_error_messages.TabStop = false;
this.gb_error_messages.Text = "error_messages";
//
// btn_search
//
this.btn_search.Location = new System.Drawing.Point(640, 214);
this.btn_search.Name = "btn_search";
this.btn_search.Size = new System.Drawing.Size(119, 101);
this.btn_search.TabIndex = 17;
this.btn_search.Text = "Suchen";
this.btn_search.UseVisualStyleBackColor = true;
//
// btn_make_ausdruck
//
this.btn_make_ausdruck.Location = new System.Drawing.Point(780, 222);
this.btn_make_ausdruck.Name = "btn_make_ausdruck";
this.btn_make_ausdruck.Size = new System.Drawing.Size(84, 92);
this.btn_make_ausdruck.TabIndex = 18;
this.btn_make_ausdruck.Text = "Ausdruck für Pregnieren";
this.btn_make_ausdruck.UseVisualStyleBackColor = true;
this.btn_make_ausdruck.Click += new System.EventHandler(this.btn_make_ausdruck_Click);
//
// frmObjekteList
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(879, 338);
this.Controls.Add(this.btn_make_ausdruck);
this.Controls.Add(this.btn_search);
this.Controls.Add(this.gb_error_messages);
this.Controls.Add(this.txt_ort);
this.Controls.Add(this.lbl_ort);
@@ -243,7 +266,7 @@
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "frmObjekteList";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "frmObjekteList";
this.Text = "Objekte List";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmObjekteList_FormClosing);
this.Load += new System.EventHandler(this.frmObjekteList_Load);
((System.ComponentModel.ISupportInitialize)(this.dGObjekte)).EndInit();
@@ -275,5 +298,7 @@
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label lbl_grounddata;
private System.Windows.Forms.GroupBox gb_error_messages;
private System.Windows.Forms.Button btn_search;
private System.Windows.Forms.Button btn_make_ausdruck;
}
}