_ Partial Class Form_Work 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.ProgressBar1 = New System.Windows.Forms.ProgressBar Me.Label1 = New System.Windows.Forms.Label Me.SuspendLayout() ' 'ProgressBar1 ' Me.ProgressBar1.Location = New System.Drawing.Point(13, 43) Me.ProgressBar1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) Me.ProgressBar1.Name = "ProgressBar1" Me.ProgressBar1.Size = New System.Drawing.Size(388, 16) Me.ProgressBar1.TabIndex = 0 ' 'Label1 ' Me.Label1.Location = New System.Drawing.Point(13, 10) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(388, 26) Me.Label1.TabIndex = 1 Me.Label1.Text = "..." Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'Form_Work ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 15.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(413, 68) Me.ControlBox = False Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.ProgressBar1) Me.Font = New System.Drawing.Font("맑은 고딕", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) Me.Name = "Form_Work" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "잠시만 기다려주세요." Me.TopMost = True Me.ResumeLayout(False) End Sub Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar Friend WithEvents Label1 As System.Windows.Forms.Label End Class