_ Partial Class frm_batch 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.tbPath = New System.Windows.Forms.TextBox() Me.btPath = New System.Windows.Forms.Button() Me.btcalc = New System.Windows.Forms.Button() Me.prb1 = New System.Windows.Forms.ProgressBar() Me.chkMyoun = New System.Windows.Forms.CheckBox() Me.Button1 = New System.Windows.Forms.Button() Me.SuspendLayout() ' 'tbPath ' Me.tbPath.Location = New System.Drawing.Point(149, 22) Me.tbPath.Name = "tbPath" Me.tbPath.Size = New System.Drawing.Size(272, 21) Me.tbPath.TabIndex = 0 Me.tbPath.Text = "C:\Temp\sample\tplx" ' 'btPath ' Me.btPath.Location = New System.Drawing.Point(12, 12) Me.btPath.Name = "btPath" Me.btPath.Size = New System.Drawing.Size(131, 39) Me.btPath.TabIndex = 1 Me.btPath.Text = "path" Me.btPath.UseVisualStyleBackColor = True ' 'btcalc ' Me.btcalc.Location = New System.Drawing.Point(12, 57) Me.btcalc.Name = "btcalc" Me.btcalc.Size = New System.Drawing.Size(726, 39) Me.btcalc.TabIndex = 2 Me.btcalc.Text = "calc" Me.btcalc.UseVisualStyleBackColor = True ' 'prb1 ' Me.prb1.Dock = System.Windows.Forms.DockStyle.Bottom Me.prb1.Location = New System.Drawing.Point(0, 154) Me.prb1.Name = "prb1" Me.prb1.Size = New System.Drawing.Size(750, 25) Me.prb1.TabIndex = 4 ' 'chkMyoun ' Me.chkMyoun.AutoSize = True Me.chkMyoun.Location = New System.Drawing.Point(427, 24) Me.chkMyoun.Name = "chkMyoun" Me.chkMyoun.Size = New System.Drawing.Size(88, 16) Me.chkMyoun.TabIndex = 5 Me.chkMyoun.Text = "입력면 추출" Me.chkMyoun.UseVisualStyleBackColor = True ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(12, 101) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(726, 39) Me.Button1.TabIndex = 6 Me.Button1.Text = "히트펌프비율계산" Me.Button1.UseVisualStyleBackColor = True ' 'frm_batch ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(750, 179) Me.Controls.Add(Me.Button1) Me.Controls.Add(Me.chkMyoun) Me.Controls.Add(Me.prb1) Me.Controls.Add(Me.btcalc) Me.Controls.Add(Me.btPath) Me.Controls.Add(Me.tbPath) Me.Name = "frm_batch" Me.Text = "frm_batch" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents btPath As System.Windows.Forms.Button Friend WithEvents btcalc As System.Windows.Forms.Button Friend WithEvents prb1 As System.Windows.Forms.ProgressBar Public WithEvents tbPath As System.Windows.Forms.TextBox Public WithEvents chkMyoun As System.Windows.Forms.CheckBox Friend WithEvents Button1 As System.Windows.Forms.Button End Class