Userfehler eingaben abgefangen

Beim erstellen von neue Projekte wird auf usereingaben geachtet
This commit is contained in:
HuskyTeufel
2022-03-25 11:36:56 +01:00
parent 097274303b
commit dea733183e
6 changed files with 44 additions and 10 deletions

View File

@@ -62,6 +62,7 @@
this.txt_pro_nr.Name = "txt_pro_nr";
this.txt_pro_nr.Size = new System.Drawing.Size(250, 26);
this.txt_pro_nr.TabIndex = 3;
this.txt_pro_nr.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txt_pro_nr_KeyPress);
//
// txt_ort
//
@@ -81,7 +82,7 @@
this.btn_save.UseVisualStyleBackColor = true;
this.btn_save.Click += new System.EventHandler(this.btn_save_Click);
//
// FrmNewProjekt
// frmNewProjekt
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
@@ -91,8 +92,8 @@
this.Controls.Add(this.txt_pro_nr);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Name = "FrmNewProjekt";
this.Text = "FrmNewProjekt";
this.Name = "frmNewProjekt";
this.Text = "Neues Projekt hinzufügen";
this.ResumeLayout(false);
this.PerformLayout();