_ Partial Class Form1 Inherits System.Windows.Forms.Form 'Form은 Dispose를 재정의하여 구성 요소 목록을 정리합니다. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) If disposing AndAlso components IsNot Nothing Then components.Dispose() End If MyBase.Dispose(disposing) End Sub 'Windows Form 디자이너에 필요합니다. Private components As System.ComponentModel.IContainer '참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다. '수정하려면 Windows Form 디자이너를 사용하십시오. '코드 편집기를 사용하여 수정하지 마십시오. _ Private Sub InitializeComponent() Me.Button1 = New System.Windows.Forms.Button Me.TextBox1 = New System.Windows.Forms.TextBox Me.Label1 = New System.Windows.Forms.Label Me.GroupBox1 = New System.Windows.Forms.GroupBox Me.Label2 = New System.Windows.Forms.Label Me.Button2 = New System.Windows.Forms.Button Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker Me.Label3 = New System.Windows.Forms.Label Me.TextBox2 = New System.Windows.Forms.TextBox Me.GroupBox1.SuspendLayout() Me.SuspendLayout() ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(395, 15) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(58, 23) Me.Button1.TabIndex = 0 Me.Button1.Text = "찾기" Me.Button1.UseVisualStyleBackColor = True ' 'TextBox1 ' Me.TextBox1.Location = New System.Drawing.Point(82, 17) Me.TextBox1.Name = "TextBox1" Me.TextBox1.Size = New System.Drawing.Size(307, 21) Me.TextBox1.TabIndex = 1 ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(23, 20) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(53, 12) Me.Label1.TabIndex = 2 Me.Label1.Text = "대상파일" ' 'GroupBox1 ' Me.GroupBox1.Controls.Add(Me.Label2) Me.GroupBox1.Location = New System.Drawing.Point(25, 51) Me.GroupBox1.Name = "GroupBox1" Me.GroupBox1.Size = New System.Drawing.Size(428, 82) Me.GroupBox1.TabIndex = 3 Me.GroupBox1.TabStop = False Me.GroupBox1.Text = "현재정보" ' 'Label2 ' Me.Label2.Location = New System.Drawing.Point(18, 21) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(404, 32) Me.Label2.TabIndex = 0 Me.Label2.Text = "파일명 : " ' 'Button2 ' Me.Button2.Location = New System.Drawing.Point(231, 169) Me.Button2.Name = "Button2" Me.Button2.Size = New System.Drawing.Size(222, 20) Me.Button2.TabIndex = 4 Me.Button2.Text = "지정된 날짜로 변경" Me.Button2.UseVisualStyleBackColor = True ' 'DateTimePicker1 ' Me.DateTimePicker1.Location = New System.Drawing.Point(25, 168) Me.DateTimePicker1.Name = "DateTimePicker1" Me.DateTimePicker1.Size = New System.Drawing.Size(200, 21) Me.DateTimePicker1.TabIndex = 1 ' 'Label3 ' Me.Label3.Location = New System.Drawing.Point(23, 145) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(97, 17) Me.Label3.TabIndex = 1 Me.Label3.Text = "인증번호" ' 'TextBox2 ' Me.TextBox2.Location = New System.Drawing.Point(86, 142) Me.TextBox2.Name = "TextBox2" Me.TextBox2.Size = New System.Drawing.Size(366, 21) Me.TextBox2.TabIndex = 5 ' 'Form1 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(471, 196) Me.Controls.Add(Me.TextBox2) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.DateTimePicker1) Me.Controls.Add(Me.Button2) Me.Controls.Add(Me.GroupBox1) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.TextBox1) Me.Controls.Add(Me.Button1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "Form1" Me.Text = "전주번호찰 관리프로그램 인증날짜 변경(.net)" Me.GroupBox1.ResumeLayout(False) Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Button1 As System.Windows.Forms.Button Friend WithEvents TextBox1 As System.Windows.Forms.TextBox Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents Button2 As System.Windows.Forms.Button Friend WithEvents DateTimePicker1 As System.Windows.Forms.DateTimePicker Friend WithEvents Label3 As System.Windows.Forms.Label Friend WithEvents TextBox2 As System.Windows.Forms.TextBox End Class