_ Partial Class RePrintForm 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() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(RePrintForm)) Me.pnPrText = New System.Windows.Forms.Panel() Me.lbPrText = New System.Windows.Forms.Label() Me.btnPrBox = New System.Windows.Forms.Button() Me.btnPrWar = New System.Windows.Forms.Button() Me.btnPrSer = New System.Windows.Forms.Button() Me.btnPrExit = New System.Windows.Forms.Button() Me.pnPrText.SuspendLayout() Me.SuspendLayout() ' 'pnPrText ' Me.pnPrText.BackColor = System.Drawing.SystemColors.Info Me.pnPrText.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None Me.pnPrText.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.pnPrText.Controls.Add(Me.lbPrText) Me.pnPrText.Location = New System.Drawing.Point(10, 10) Me.pnPrText.Name = "pnPrText" Me.pnPrText.Size = New System.Drawing.Size(620, 70) Me.pnPrText.TabIndex = 0 ' 'lbPrText ' Me.lbPrText.AutoSize = True Me.lbPrText.Font = New System.Drawing.Font("함초롬바탕", 36.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.lbPrText.Location = New System.Drawing.Point(120, 0) Me.lbPrText.Name = "lbPrText" Me.lbPrText.Size = New System.Drawing.Size(384, 62) Me.lbPrText.TabIndex = 0 Me.lbPrText.Text = "재인쇄 항목 선택" ' 'btnPrBox ' Me.btnPrBox.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.btnPrBox.Location = New System.Drawing.Point(10, 90) Me.btnPrBox.Name = "btnPrBox" Me.btnPrBox.Size = New System.Drawing.Size(200, 90) Me.btnPrBox.TabIndex = 1 Me.btnPrBox.Text = "BOX 인쇄" Me.btnPrBox.UseVisualStyleBackColor = True ' 'btnPrWar ' Me.btnPrWar.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.btnPrWar.Location = New System.Drawing.Point(220, 90) Me.btnPrWar.Name = "btnPrWar" Me.btnPrWar.Size = New System.Drawing.Size(200, 90) Me.btnPrWar.TabIndex = 2 Me.btnPrWar.Text = "Warranty 인쇄" Me.btnPrWar.UseVisualStyleBackColor = True ' 'btnPrSer ' Me.btnPrSer.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.btnPrSer.Location = New System.Drawing.Point(430, 90) Me.btnPrSer.Name = "btnPrSer" Me.btnPrSer.Size = New System.Drawing.Size(200, 90) Me.btnPrSer.TabIndex = 3 Me.btnPrSer.Text = "Serial 인쇄" Me.btnPrSer.UseVisualStyleBackColor = True ' 'btnPrExit ' Me.btnPrExit.BackColor = System.Drawing.SystemColors.ButtonFace Me.btnPrExit.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.btnPrExit.Location = New System.Drawing.Point(220, 186) Me.btnPrExit.Name = "btnPrExit" Me.btnPrExit.Size = New System.Drawing.Size(200, 65) Me.btnPrExit.TabIndex = 4 Me.btnPrExit.Text = "완 료" Me.btnPrExit.UseVisualStyleBackColor = False ' 'RePrintForm ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(639, 261) Me.Controls.Add(Me.btnPrExit) Me.Controls.Add(Me.btnPrSer) Me.Controls.Add(Me.btnPrWar) Me.Controls.Add(Me.btnPrBox) Me.Controls.Add(Me.pnPrText) Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.Name = "RePrintForm" Me.Text = "RePrintForm" Me.pnPrText.ResumeLayout(False) Me.pnPrText.PerformLayout() Me.ResumeLayout(False) End Sub Friend WithEvents pnPrText As Panel Friend WithEvents lbPrText As Label Friend WithEvents btnPrBox As Button Friend WithEvents btnPrWar As Button Friend WithEvents btnPrSer As Button Friend WithEvents btnPrExit As Button End Class