This commit is contained in:
chi
2022-01-08 13:29:22 +09:00
parent fff64fa703
commit e2aa532654
47 changed files with 8448 additions and 2202 deletions

View File

@@ -72,14 +72,14 @@ namespace JobReportMailService
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStrip = new System.Windows.Forms.ToolStrip();
this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
this.bt1 = new System.Windows.Forms.ToolStripButton();
this.bt2 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
this.printToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
this.bt3 = new System.Windows.Forms.ToolStripButton();
this.bt4 = new System.Windows.Forms.ToolStripButton();
this.bt5 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.bt6 = new System.Windows.Forms.ToolStripButton();
this.statusStrip = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
@@ -325,8 +325,9 @@ namespace JobReportMailService
// optionsToolStripMenuItem
//
this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
this.optionsToolStripMenuItem.Size = new System.Drawing.Size(115, 22);
this.optionsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.optionsToolStripMenuItem.Text = "옵션(&O)";
this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
//
// windowsMenu
//
@@ -432,83 +433,83 @@ namespace JobReportMailService
// toolStrip
//
this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.newToolStripButton,
this.openToolStripButton,
this.bt1,
this.bt2,
this.toolStripSeparator1,
this.saveToolStripButton,
this.printToolStripButton,
this.toolStripButton2,
this.bt3,
this.bt4,
this.bt5,
this.toolStripSeparator2,
this.toolStripButton1});
this.bt6});
this.toolStrip.Location = new System.Drawing.Point(0, 24);
this.toolStrip.Name = "toolStrip";
this.toolStrip.Size = new System.Drawing.Size(709, 25);
this.toolStrip.TabIndex = 1;
this.toolStrip.Text = "ToolStrip";
//
// newToolStripButton
// bt1
//
this.newToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("newToolStripButton.Image")));
this.newToolStripButton.ImageTransparentColor = System.Drawing.Color.Black;
this.newToolStripButton.Name = "newToolStripButton";
this.newToolStripButton.Size = new System.Drawing.Size(95, 22);
this.newToolStripButton.Text = "업무일지(일)";
this.newToolStripButton.Click += new System.EventHandler(this.ShowNewForm);
this.bt1.Image = ((System.Drawing.Image)(resources.GetObject("bt1.Image")));
this.bt1.ImageTransparentColor = System.Drawing.Color.Black;
this.bt1.Name = "bt1";
this.bt1.Size = new System.Drawing.Size(95, 22);
this.bt1.Text = "업무일지(일)";
this.bt1.Click += new System.EventHandler(this.ShowNewForm);
//
// openToolStripButton
// bt2
//
this.openToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("openToolStripButton.Image")));
this.openToolStripButton.ImageTransparentColor = System.Drawing.Color.Black;
this.openToolStripButton.Name = "openToolStripButton";
this.openToolStripButton.Size = new System.Drawing.Size(95, 22);
this.openToolStripButton.Text = "업무일지(주)";
this.openToolStripButton.Click += new System.EventHandler(this.OpenFile);
this.bt2.Image = ((System.Drawing.Image)(resources.GetObject("bt2.Image")));
this.bt2.ImageTransparentColor = System.Drawing.Color.Black;
this.bt2.Name = "bt2";
this.bt2.Size = new System.Drawing.Size(95, 22);
this.bt2.Text = "업무일지(주)";
this.bt2.Click += new System.EventHandler(this.OpenFile);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
//
// saveToolStripButton
// bt3
//
this.saveToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("saveToolStripButton.Image")));
this.saveToolStripButton.ImageTransparentColor = System.Drawing.Color.Black;
this.saveToolStripButton.Name = "saveToolStripButton";
this.saveToolStripButton.Size = new System.Drawing.Size(83, 22);
this.saveToolStripButton.Text = "스케쥴(일)";
this.saveToolStripButton.Click += new System.EventHandler(this.saveToolStripButton_Click);
this.bt3.Image = ((System.Drawing.Image)(resources.GetObject("bt3.Image")));
this.bt3.ImageTransparentColor = System.Drawing.Color.Black;
this.bt3.Name = "bt3";
this.bt3.Size = new System.Drawing.Size(83, 22);
this.bt3.Text = "스케쥴(일)";
this.bt3.Click += new System.EventHandler(this.saveToolStripButton_Click);
//
// printToolStripButton
// bt4
//
this.printToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("printToolStripButton.Image")));
this.printToolStripButton.ImageTransparentColor = System.Drawing.Color.Black;
this.printToolStripButton.Name = "printToolStripButton";
this.printToolStripButton.Size = new System.Drawing.Size(83, 22);
this.printToolStripButton.Text = "스케쥴(주)";
this.printToolStripButton.Click += new System.EventHandler(this.printToolStripButton_Click);
this.bt4.Image = ((System.Drawing.Image)(resources.GetObject("bt4.Image")));
this.bt4.ImageTransparentColor = System.Drawing.Color.Black;
this.bt4.Name = "bt4";
this.bt4.Size = new System.Drawing.Size(83, 22);
this.bt4.Text = "스케쥴(주)";
this.bt4.Click += new System.EventHandler(this.printToolStripButton_Click);
//
// toolStripButton2
// bt5
//
this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Black;
this.toolStripButton2.Name = "toolStripButton2";
this.toolStripButton2.Size = new System.Drawing.Size(107, 22);
this.toolStripButton2.Text = "스케쥴없음(주)";
this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
this.bt5.Image = ((System.Drawing.Image)(resources.GetObject("bt5.Image")));
this.bt5.ImageTransparentColor = System.Drawing.Color.Black;
this.bt5.Name = "bt5";
this.bt5.Size = new System.Drawing.Size(107, 22);
this.bt5.Text = "스케쥴없음(주)";
this.bt5.Click += new System.EventHandler(this.toolStripButton2_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
//
// toolStripButton1
// bt6
//
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Black;
this.toolStripButton1.Name = "toolStripButton1";
this.toolStripButton1.Size = new System.Drawing.Size(111, 22);
this.toolStripButton1.Text = "메일생성및전송";
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
this.bt6.Image = ((System.Drawing.Image)(resources.GetObject("bt6.Image")));
this.bt6.ImageTransparentColor = System.Drawing.Color.Black;
this.bt6.Name = "bt6";
this.bt6.Size = new System.Drawing.Size(111, 22);
this.bt6.Text = "메일생성및전송";
this.bt6.Click += new System.EventHandler(this.toolStripButton1_Click);
//
// statusStrip
//
@@ -596,15 +597,15 @@ namespace JobReportMailService
private System.Windows.Forms.ToolStripMenuItem contentsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem indexToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem searchToolStripMenuItem;
private System.Windows.Forms.ToolStripButton newToolStripButton;
private System.Windows.Forms.ToolStripButton openToolStripButton;
private System.Windows.Forms.ToolStripButton saveToolStripButton;
private System.Windows.Forms.ToolStripButton printToolStripButton;
private System.Windows.Forms.ToolStripButton bt1;
private System.Windows.Forms.ToolStripButton bt2;
private System.Windows.Forms.ToolStripButton bt3;
private System.Windows.Forms.ToolStripButton bt4;
private System.Windows.Forms.ToolTip toolTip;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripButton toolStripButton1;
private System.Windows.Forms.ToolStripButton toolStripButton2;
private System.Windows.Forms.ToolStripButton bt6;
private System.Windows.Forms.ToolStripButton bt5;
}
}