_ 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.Button2 = New System.Windows.Forms.Button() Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker() Me.tb_key1 = New System.Windows.Forms.TextBox() Me.Label1 = New System.Windows.Forms.Label() Me.SuspendLayout() ' 'Button2 ' Me.Button2.Location = New System.Drawing.Point(292, 8) Me.Button2.Name = "Button2" Me.Button2.Size = New System.Drawing.Size(200, 21) Me.Button2.TabIndex = 4 Me.Button2.Text = "인증번호1생성 ->" Me.Button2.UseVisualStyleBackColor = True ' 'DateTimePicker1 ' Me.DateTimePicker1.Location = New System.Drawing.Point(86, 8) Me.DateTimePicker1.Name = "DateTimePicker1" Me.DateTimePicker1.Size = New System.Drawing.Size(200, 21) Me.DateTimePicker1.TabIndex = 1 ' 'tb_key1 ' Me.tb_key1.Location = New System.Drawing.Point(12, 35) Me.tb_key1.Multiline = True Me.tb_key1.Name = "tb_key1" Me.tb_key1.ReadOnly = True Me.tb_key1.Size = New System.Drawing.Size(480, 68) Me.tb_key1.TabIndex = 5 ' 'Label1 ' Me.Label1.Location = New System.Drawing.Point(12, 10) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(68, 17) Me.Label1.TabIndex = 1 Me.Label1.Text = "만기일" Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'Form1 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(499, 109) Me.Controls.Add(Me.Button2) Me.Controls.Add(Me.DateTimePicker1) Me.Controls.Add(Me.tb_key1) Me.Controls.Add(Me.Label1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "Form1" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "번호찰 관리프로그램 인증키 생성 (tindevil@nate.com)" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Button2 As System.Windows.Forms.Button Friend WithEvents DateTimePicker1 As System.Windows.Forms.DateTimePicker Friend WithEvents tb_key1 As System.Windows.Forms.TextBox Friend WithEvents Label1 As System.Windows.Forms.Label End Class