_ Partial Class invForm Inherits System.Windows.Forms.Form 'Form은 Dispose를 재정의하여 구성 요소 목록을 정리합니다. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Windows Form 디자이너에 필요합니다. Private components As System.ComponentModel.IContainer '참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다. '수정하려면 Windows Form 디자이너를 사용하십시오. '코드 편집기에서는 수정하지 마세요. _ Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(invForm)) Me.pnInvTop = New System.Windows.Forms.Panel() Me.lbInvTop = New System.Windows.Forms.Label() Me.pnInv = New System.Windows.Forms.Panel() Me.txbInv = New System.Windows.Forms.TextBox() Me.invTimer = New System.Windows.Forms.Timer(Me.components) Me.btnInvOK = New System.Windows.Forms.Button() Me.pnInvTop.SuspendLayout() Me.pnInv.SuspendLayout() Me.SuspendLayout() ' 'pnInvTop ' Me.pnInvTop.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle Me.pnInvTop.Controls.Add(Me.lbInvTop) Me.pnInvTop.Location = New System.Drawing.Point(12, 2) Me.pnInvTop.Name = "pnInvTop" Me.pnInvTop.Size = New System.Drawing.Size(786, 85) Me.pnInvTop.TabIndex = 18 ' 'lbInvTop ' Me.lbInvTop.AutoSize = True Me.lbInvTop.Font = New System.Drawing.Font("함초롬바탕", 36.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.lbInvTop.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer)) Me.lbInvTop.Location = New System.Drawing.Point(192, 9) Me.lbInvTop.Name = "lbInvTop" Me.lbInvTop.Size = New System.Drawing.Size(379, 62) Me.lbInvTop.TabIndex = 3 Me.lbInvTop.Text = "송 장 번 호 입 력" ' 'pnInv ' Me.pnInv.BackColor = System.Drawing.Color.Black Me.pnInv.Controls.Add(Me.txbInv) Me.pnInv.Location = New System.Drawing.Point(2, 93) Me.pnInv.Name = "pnInv" Me.pnInv.Size = New System.Drawing.Size(809, 168) Me.pnInv.TabIndex = 19 ' 'txbInv ' Me.txbInv.BackColor = System.Drawing.Color.LemonChiffon Me.txbInv.Font = New System.Drawing.Font("함초롬바탕", 71.99999!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbInv.Location = New System.Drawing.Point(10, 17) Me.txbInv.Name = "txbInv" Me.txbInv.Size = New System.Drawing.Size(786, 132) Me.txbInv.TabIndex = 0 Me.txbInv.Text = "998877665544" Me.txbInv.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' 'invTimer ' Me.invTimer.Interval = 50 ' 'btnInvOK ' Me.btnInvOK.Font = New System.Drawing.Font("함초롬바탕", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.btnInvOK.Location = New System.Drawing.Point(284, 267) Me.btnInvOK.Name = "btnInvOK" Me.btnInvOK.Size = New System.Drawing.Size(231, 76) Me.btnInvOK.TabIndex = 20 Me.btnInvOK.Text = "등록하기" Me.btnInvOK.UseVisualStyleBackColor = True ' 'invForm ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(809, 351) Me.Controls.Add(Me.btnInvOK) Me.Controls.Add(Me.pnInv) Me.Controls.Add(Me.pnInvTop) Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.Name = "invForm" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "invForm" Me.pnInvTop.ResumeLayout(False) Me.pnInvTop.PerformLayout() Me.pnInv.ResumeLayout(False) Me.pnInv.PerformLayout() Me.ResumeLayout(False) End Sub Friend WithEvents pnInvTop As Panel Friend WithEvents lbInvTop As Label Friend WithEvents pnInv As Panel Friend WithEvents txbInv As TextBox Friend WithEvents invTimer As Timer Friend WithEvents btnInvOK As Button End Class