_
Partial Class Form1
    Inherits System.Windows.Forms.Form

    'Form overrides dispose to clean up the component list.
     _
    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.
     _
    Private Sub InitializeComponent()
        Me.Button1 = New System.Windows.Forms.Button()
        Me.Button2 = New System.Windows.Forms.Button()
        Me.PictureBox1 = New System.Windows.Forms.PictureBox()
        Me.LTimer = New System.Windows.Forms.Label()
        Me.TBTimer = New System.Windows.Forms.TextBox()
        Me.LFinished = New System.Windows.Forms.Label()
        Me.TBSize = New System.Windows.Forms.TextBox()
        Me.LSize = New System.Windows.Forms.Label()
        Me.TBFree = New System.Windows.Forms.TextBox()
        Me.LFree = New System.Windows.Forms.Label()
        Me.LError = New System.Windows.Forms.Label()
        Me.TBError = New System.Windows.Forms.TextBox()
        CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
        Me.SuspendLayout()
        '
        'Button1
        '
        Me.Button1.Location = New System.Drawing.Point(17, 12)
        Me.Button1.Name = "Button1"
        Me.Button1.Size = New System.Drawing.Size(80, 29)
        Me.Button1.TabIndex = 0
        Me.Button1.Text = "Start"
        Me.Button1.UseVisualStyleBackColor = True
        '
        'Button2
        '
        Me.Button2.Location = New System.Drawing.Point(120, 12)
        Me.Button2.Name = "Button2"
        Me.Button2.Size = New System.Drawing.Size(80, 29)
        Me.Button2.TabIndex = 1
        Me.Button2.Text = "End"
        Me.Button2.UseVisualStyleBackColor = True
        '
        'PictureBox1
        '
        Me.PictureBox1.Location = New System.Drawing.Point(53, 125)
        Me.PictureBox1.Name = "PictureBox1"
        Me.PictureBox1.Size = New System.Drawing.Size(100, 100)
        Me.PictureBox1.TabIndex = 2
        Me.PictureBox1.TabStop = False
        '
        'LTimer
        '
        Me.LTimer.AutoSize = True
        Me.LTimer.Location = New System.Drawing.Point(8, 85)
        Me.LTimer.Name = "LTimer"
        Me.LTimer.Size = New System.Drawing.Size(33, 13)
        Me.LTimer.TabIndex = 3
        Me.LTimer.Text = "Timer"
        '
        'TBTimer
        '
        Me.TBTimer.Location = New System.Drawing.Point(47, 82)
        Me.TBTimer.Name = "TBTimer"
        Me.TBTimer.Size = New System.Drawing.Size(50, 20)
        Me.TBTimer.TabIndex = 4
        Me.TBTimer.Text = "0"
        '
        'LFinished
        '
        Me.LFinished.AutoSize = True
        Me.LFinished.Font = New System.Drawing.Font("Microsoft Sans Serif", 15.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.LFinished.Location = New System.Drawing.Point(59, 125)
        Me.LFinished.Name = "LFinished"
        Me.LFinished.Size = New System.Drawing.Size(94, 25)
        Me.LFinished.TabIndex = 5
        Me.LFinished.Text = "Finished"
        '
        'TBSize
        '
        Me.TBSize.Location = New System.Drawing.Point(47, 49)
        Me.TBSize.Name = "TBSize"
        Me.TBSize.Size = New System.Drawing.Size(50, 20)
        Me.TBSize.TabIndex = 7
        Me.TBSize.Text = "18"
        '
        'LSize
        '
        Me.LSize.AutoSize = True
        Me.LSize.Location = New System.Drawing.Point(14, 54)
        Me.LSize.Name = "LSize"
        Me.LSize.Size = New System.Drawing.Size(27, 13)
        Me.LSize.TabIndex = 6
        Me.LSize.Text = "Size"
        '
        'TBFree
        '
        Me.TBFree.Location = New System.Drawing.Point(152, 47)
        Me.TBFree.Name = "TBFree"
        Me.TBFree.Size = New System.Drawing.Size(48, 20)
        Me.TBFree.TabIndex = 8
        Me.TBFree.Text = "0"
        '
        'LFree
        '
        Me.LFree.AutoSize = True
        Me.LFree.Location = New System.Drawing.Point(118, 52)
        Me.LFree.Name = "LFree"
        Me.LFree.Size = New System.Drawing.Size(28, 13)
        Me.LFree.TabIndex = 9
        Me.LFree.Text = "Free"
        '
        'LError
        '
        Me.LError.AutoSize = True
        Me.LError.Location = New System.Drawing.Point(117, 85)
        Me.LError.Name = "LError"
        Me.LError.Size = New System.Drawing.Size(29, 13)
        Me.LError.TabIndex = 11
        Me.LError.Text = "Error"
        '
        'TBError
        '
        Me.TBError.Location = New System.Drawing.Point(152, 82)
        Me.TBError.Name = "TBError"
        Me.TBError.Size = New System.Drawing.Size(48, 20)
        Me.TBError.TabIndex = 10
        Me.TBError.Text = "0"
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(215, 262)
        Me.Controls.Add(Me.LError)
        Me.Controls.Add(Me.TBError)
        Me.Controls.Add(Me.LFree)
        Me.Controls.Add(Me.TBFree)
        Me.Controls.Add(Me.TBSize)
        Me.Controls.Add(Me.LSize)
        Me.Controls.Add(Me.LFinished)
        Me.Controls.Add(Me.TBTimer)
        Me.Controls.Add(Me.LTimer)
        Me.Controls.Add(Me.PictureBox1)
        Me.Controls.Add(Me.Button2)
        Me.Controls.Add(Me.Button1)
        Me.Name = "Form1"
        Me.Text = "Control Form"
        CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents Button1 As System.Windows.Forms.Button
    Friend WithEvents Button2 As System.Windows.Forms.Button
    Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox
    Friend WithEvents LTimer As System.Windows.Forms.Label
    Friend WithEvents TBTimer As System.Windows.Forms.TextBox
    Friend WithEvents LFinished As System.Windows.Forms.Label
    Friend WithEvents TBSize As System.Windows.Forms.TextBox
    Friend WithEvents LSize As System.Windows.Forms.Label
    Friend WithEvents TBFree As System.Windows.Forms.TextBox
    Friend WithEvents LFree As System.Windows.Forms.Label
    Friend WithEvents LError As System.Windows.Forms.Label
    Friend WithEvents TBError As System.Windows.Forms.TextBox

End Class