1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
- Partial Class ProgressForm
- Inherits System.Windows.Forms.Form
- 'Form overrides dispose to clean up the component list.
- <System.Diagnostics.DebuggerNonUserCode()> _
- 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
- 'Required by the Windows Form Designer
- Private components As System.ComponentModel.IContainer
- 'NOTE: The following procedure is required by the Windows Form Designer
- 'It can be modified using the Windows Form Designer.
- 'Do not modify it using the code editor.
- <System.Diagnostics.DebuggerStepThrough()> _
- Private Sub InitializeComponent()
- Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
- Me.Label1 = New System.Windows.Forms.Label()
- Me.ProgressBar2 = New System.Windows.Forms.ProgressBar()
- Me.SuspendLayout()
- '
- 'ProgressBar1
- '
- Me.ProgressBar1.Location = New System.Drawing.Point(12, 35)
- Me.ProgressBar1.Name = "ProgressBar1"
- Me.ProgressBar1.Size = New System.Drawing.Size(260, 23)
- Me.ProgressBar1.TabIndex = 0
- '
- 'Label1
- '
- Me.Label1.Location = New System.Drawing.Point(10, 9)
- Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(262, 23)
- Me.Label1.TabIndex = 1
- Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'ProgressBar2
- '
- Me.ProgressBar2.Location = New System.Drawing.Point(13, 65)
- Me.ProgressBar2.Name = "ProgressBar2"
- Me.ProgressBar2.Size = New System.Drawing.Size(259, 23)
- Me.ProgressBar2.TabIndex = 2
- '
- 'Progress
- '
- Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
- Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(284, 98)
- Me.Controls.Add(Me.ProgressBar2)
- Me.Controls.Add(Me.Label1)
- Me.Controls.Add(Me.ProgressBar1)
- Me.Name = "Progress"
- Me.Text = "Progress"
- Me.ResumeLayout(False)
- End Sub
- Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar
- Friend WithEvents Label1 As System.Windows.Forms.Label
- Friend WithEvents ProgressBar2 As System.Windows.Forms.ProgressBar
- End Class
|