NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;

/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}

#region Windows Form Designer generated code

/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.tsmNewRecord = new System.Windows.Forms.ToolStripMenuItem();
this.dtHireDate = new System.Windows.Forms.DateTimePicker();
this.txtMail = new System.Windows.Forms.TextBox();
this.txtPhone = new System.Windows.Forms.TextBox();
this.txtLastName = new System.Windows.Forms.TextBox();
this.txtFirstName = new System.Windows.Forms.TextBox();
this.label5 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.btnSave = new System.Windows.Forms.Button();
this.btnUpdate = new System.Windows.Forms.Button();
this.lstEmployees = new System.Windows.Forms.ListBox();
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.tsmEdit = new System.Windows.Forms.ToolStripMenuItem();
this.tsmDelete = new System.Windows.Forms.ToolStripMenuItem();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
this.groupBox1.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
this.contextMenuStrip2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.ContextMenuStrip = this.contextMenuStrip1;
this.groupBox1.Controls.Add(this.dtHireDate);
this.groupBox1.Controls.Add(this.txtMail);
this.groupBox1.Controls.Add(this.txtPhone);
this.groupBox1.Controls.Add(this.txtLastName);
this.groupBox1.Controls.Add(this.txtFirstName);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(447, 218);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Personel Ekranı";
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmNewRecord});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(126, 26);
//
// tsmNewRecord
//
this.tsmNewRecord.Name = "tsmNewRecord";
this.tsmNewRecord.Size = new System.Drawing.Size(125, 22);
this.tsmNewRecord.Text = "Yeni Kayıt";
//
// dtHireDate
//
this.dtHireDate.Location = new System.Drawing.Point(154, 167);
this.dtHireDate.Name = "dtHireDate";
this.dtHireDate.Size = new System.Drawing.Size(271, 26);
this.dtHireDate.TabIndex = 2;
//
// txtMail
//
this.txtMail.Location = new System.Drawing.Point(154, 135);
this.txtMail.Name = "txtMail";
this.txtMail.Size = new System.Drawing.Size(271, 26);
this.txtMail.TabIndex = 1;
//
// txtPhone
//
this.txtPhone.Location = new System.Drawing.Point(154, 103);
this.txtPhone.Name = "txtPhone";
this.txtPhone.Size = new System.Drawing.Size(271, 26);
this.txtPhone.TabIndex = 1;
//
// txtLastName
//
this.txtLastName.Location = new System.Drawing.Point(154, 71);
this.txtLastName.Name = "txtLastName";
this.txtLastName.Size = new System.Drawing.Size(271, 26);
this.txtLastName.TabIndex = 1;
//
// txtFirstName
//
this.txtFirstName.Location = new System.Drawing.Point(154, 39);
this.txtFirstName.Name = "txtFirstName";
this.txtFirstName.Size = new System.Drawing.Size(271, 26);
this.txtFirstName.TabIndex = 1;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(22, 172);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(121, 20);
this.label5.TabIndex = 0;
this.label5.Text = "İşe Giriş Tarihi : ";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(94, 138);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(49, 20);
this.label4.TabIndex = 0;
this.label4.Text = "Mail : ";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(69, 106);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(74, 20);
this.label3.TabIndex = 0;
this.label3.Text = "Telefon : ";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(74, 74);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(69, 20);
this.label2.TabIndex = 0;
this.label2.Text = "Soyadı : ";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(99, 42);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(44, 20);
this.label1.TabIndex = 0;
this.label1.Text = "Adı : ";
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(12, 236);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(186, 40);
this.btnSave.TabIndex = 1;
this.btnSave.Text = "Kaydet";
this.btnSave.UseVisualStyleBackColor = true;
//
// btnUpdate
//
this.btnUpdate.Location = new System.Drawing.Point(204, 236);
this.btnUpdate.Name = "btnUpdate";
this.btnUpdate.Size = new System.Drawing.Size(255, 40);
this.btnUpdate.TabIndex = 1;
this.btnUpdate.Text = "Güncelle";
this.btnUpdate.UseVisualStyleBackColor = true;
//
// lstEmployees
//
this.lstEmployees.ContextMenuStrip = this.contextMenuStrip2;
this.lstEmployees.FormattingEnabled = true;
this.lstEmployees.ItemHeight = 20;
this.lstEmployees.Location = new System.Drawing.Point(465, 12);
this.lstEmployees.Name = "lstEmployees";
this.lstEmployees.Size = new System.Drawing.Size(263, 264);
this.lstEmployees.TabIndex = 2;
//
// contextMenuStrip2
//
this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmEdit,
this.tsmDelete});
this.contextMenuStrip2.Name = "contextMenuStrip2";
this.contextMenuStrip2.Size = new System.Drawing.Size(117, 48);
//
// tsmEdit
//
this.tsmEdit.Name = "tsmEdit";
this.tsmEdit.Size = new System.Drawing.Size(180, 22);
this.tsmEdit.Text = "Düzenle";
//
// tsmDelete
//
this.tsmDelete.Name = "tsmDelete";
this.tsmDelete.Size = new System.Drawing.Size(180, 22);
this.tsmDelete.Text = "Sil";
//
// errorProvider1
//
this.errorProvider1.ContainerControl = this;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(744, 290);
this.Controls.Add(this.lstEmployees);
this.Controls.Add(this.btnUpdate);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.groupBox1);
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.Name = "Form1";
this.Text = "Form1";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.contextMenuStrip1.ResumeLayout(false);
this.contextMenuStrip2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
this.ResumeLayout(false);

}

#endregion

private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox txtLastName;
private System.Windows.Forms.TextBox txtFirstName;
private System.Windows.Forms.TextBox txtMail;
private System.Windows.Forms.TextBox txtPhone;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Button btnUpdate;
private System.Windows.Forms.ListBox lstEmployees;
private System.Windows.Forms.DateTimePicker dtHireDate;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem tsmNewRecord;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip2;
private System.Windows.Forms.ToolStripMenuItem tsmEdit;
private System.Windows.Forms.ToolStripMenuItem tsmDelete;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.ErrorProvider errorProvider1;
}
}
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.