100 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
 | |
| namespace Project.Dialog
 | |
| {
 | |
|     partial class AccessDB
 | |
|     {
 | |
|         /// <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.button1 = new System.Windows.Forms.Button();
 | |
|             this.button2 = new System.Windows.Forms.Button();
 | |
|             this.comboBox1 = new System.Windows.Forms.ComboBox();
 | |
|             this.button3 = new System.Windows.Forms.Button();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // button1
 | |
|             // 
 | |
|             this.button1.Location = new System.Drawing.Point(39, 22);
 | |
|             this.button1.Name = "button1";
 | |
|             this.button1.Size = new System.Drawing.Size(170, 58);
 | |
|             this.button1.TabIndex = 0;
 | |
|             this.button1.Text = "부서명 업데이트";
 | |
|             this.button1.UseVisualStyleBackColor = true;
 | |
|             this.button1.Click += new System.EventHandler(this.button1_Click);
 | |
|             // 
 | |
|             // button2
 | |
|             // 
 | |
|             this.button2.Location = new System.Drawing.Point(166, 318);
 | |
|             this.button2.Name = "button2";
 | |
|             this.button2.Size = new System.Drawing.Size(749, 47);
 | |
|             this.button2.TabIndex = 1;
 | |
|             this.button2.Text = "인원 업데이트";
 | |
|             this.button2.UseVisualStyleBackColor = true;
 | |
|             this.button2.Click += new System.EventHandler(this.button2_Click);
 | |
|             // 
 | |
|             // comboBox1
 | |
|             // 
 | |
|             this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
 | |
|             this.comboBox1.Font = new System.Drawing.Font("맑은 고딕", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
 | |
|             this.comboBox1.FormattingEnabled = true;
 | |
|             this.comboBox1.Location = new System.Drawing.Point(39, 86);
 | |
|             this.comboBox1.Name = "comboBox1";
 | |
|             this.comboBox1.Size = new System.Drawing.Size(925, 36);
 | |
|             this.comboBox1.TabIndex = 2;
 | |
|             // 
 | |
|             // button3
 | |
|             // 
 | |
|             this.button3.Location = new System.Drawing.Point(794, 22);
 | |
|             this.button3.Name = "button3";
 | |
|             this.button3.Size = new System.Drawing.Size(170, 58);
 | |
|             this.button3.TabIndex = 3;
 | |
|             this.button3.Text = "등록";
 | |
|             this.button3.UseVisualStyleBackColor = true;
 | |
|             this.button3.Click += new System.EventHandler(this.button3_Click);
 | |
|             // 
 | |
|             // AccessDB
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(970, 470);
 | |
|             this.Controls.Add(this.button3);
 | |
|             this.Controls.Add(this.comboBox1);
 | |
|             this.Controls.Add(this.button2);
 | |
|             this.Controls.Add(this.button1);
 | |
|             this.Name = "AccessDB";
 | |
|             this.Text = "AccessDB";
 | |
|             this.ResumeLayout(false);
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         private System.Windows.Forms.Button button1;
 | |
|         private System.Windows.Forms.Button button2;
 | |
|         private System.Windows.Forms.ComboBox comboBox1;
 | |
|         private System.Windows.Forms.Button button3;
 | |
|     }
 | |
| } | 
