This commit is contained in:
ykh
2024-12-30 23:04:30 +09:00
parent c01051f024
commit 8f89991a09
45 changed files with 7567 additions and 1033 deletions

View File

@@ -27,6 +27,7 @@ Partial Class frm_batch
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
@@ -48,7 +49,7 @@ Partial Class frm_batch
'
'btcalc
'
Me.btcalc.Location = New System.Drawing.Point(12, 83)
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
@@ -58,7 +59,7 @@ Partial Class frm_batch
'prb1
'
Me.prb1.Dock = System.Windows.Forms.DockStyle.Bottom
Me.prb1.Location = New System.Drawing.Point(0, 146)
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
@@ -66,18 +67,28 @@ Partial Class frm_batch
'chkMyoun
'
Me.chkMyoun.AutoSize = True
Me.chkMyoun.Location = New System.Drawing.Point(449, 12)
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, 171)
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)
@@ -94,4 +105,5 @@ Partial Class frm_batch
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