_
Partial Class PlanetSForm

    ' 23-12-2010    First Release

    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.seccntL = New System.Windows.Forms.Label()
        Me.seccntT = New System.Windows.Forms.TextBox()
        Me.tdeltaL = New System.Windows.Forms.Label()
        Me.tdeltaT = New System.Windows.Forms.TextBox()
        Me.nplL = New System.Windows.Forms.Label()
        Me.HoldL = New System.Windows.Forms.Label()
        Me.HoldT = New System.Windows.Forms.NumericUpDown()
        Me.nplT = New System.Windows.Forms.NumericUpDown()
        CType(Me.HoldT, System.ComponentModel.ISupportInitialize).BeginInit()
        CType(Me.nplT, System.ComponentModel.ISupportInitialize).BeginInit()
        Me.SuspendLayout()
        '
        'seccntL
        '
        Me.seccntL.AutoSize = True
        Me.seccntL.Location = New System.Drawing.Point(167, 110)
        Me.seccntL.Name = "seccntL"
        Me.seccntL.Size = New System.Drawing.Size(24, 13)
        Me.seccntL.TabIndex = 0
        Me.seccntL.Text = "sec"
        '
        'seccntT
        '
        Me.seccntT.Location = New System.Drawing.Point(197, 105)
        Me.seccntT.Name = "seccntT"
        Me.seccntT.Size = New System.Drawing.Size(28, 20)
        Me.seccntT.TabIndex = 1
        Me.seccntT.Text = "1"
        Me.seccntT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
        '
        'tdeltaL
        '
        Me.tdeltaL.AutoSize = True
        Me.tdeltaL.Location = New System.Drawing.Point(80, 107)
        Me.tdeltaL.Name = "tdeltaL"
        Me.tdeltaL.Size = New System.Drawing.Size(36, 13)
        Me.tdeltaL.TabIndex = 4
        Me.tdeltaL.Text = "delta t"
        '
        'tdeltaT
        '
        Me.tdeltaT.Location = New System.Drawing.Point(122, 102)
        Me.tdeltaT.Name = "tdeltaT"
        Me.tdeltaT.Size = New System.Drawing.Size(39, 20)
        Me.tdeltaT.TabIndex = 5
        Me.tdeltaT.Text = "0.02"
        Me.tdeltaT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
        '
        'nplL
        '
        Me.nplL.AutoSize = True
        Me.nplL.Location = New System.Drawing.Point(231, 109)
        Me.nplL.Name = "nplL"
        Me.nplL.Size = New System.Drawing.Size(51, 13)
        Me.nplL.TabIndex = 6
        Me.nplL.Text = "# planets"
        '
        'HoldL
        '
        Me.HoldL.AutoSize = True
        Me.HoldL.Location = New System.Drawing.Point(328, 110)
        Me.HoldL.Name = "HoldL"
        Me.HoldL.Size = New System.Drawing.Size(29, 13)
        Me.HoldL.TabIndex = 9
        Me.HoldL.Text = "Hold"
        '
        'HoldT
        '
        Me.HoldT.Location = New System.Drawing.Point(363, 106)
        Me.HoldT.Minimum = New Decimal(New Integer() {1, 0, 0, -2147483648})
        Me.HoldT.Name = "HoldT"
        Me.HoldT.Size = New System.Drawing.Size(43, 20)
        Me.HoldT.TabIndex = 12
        Me.HoldT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
        Me.HoldT.Value = New Decimal(New Integer() {1, 0, 0, -2147483648})
        '
        'nplT
        '
        Me.nplT.Location = New System.Drawing.Point(279, 105)
        Me.nplT.Minimum = New Decimal(New Integer() {1, 0, 0, 0})
        Me.nplT.Name = "nplT"
        Me.nplT.Size = New System.Drawing.Size(43, 20)
        Me.nplT.TabIndex = 13
        Me.nplT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
        Me.nplT.Value = New Decimal(New Integer() {10, 0, 0, 0})
        '
        'PlanetSForm
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(410, 184)
        Me.Controls.Add(Me.nplT)
        Me.Controls.Add(Me.HoldT)
        Me.Controls.Add(Me.HoldL)
        Me.Controls.Add(Me.nplL)
        Me.Controls.Add(Me.tdeltaT)
        Me.Controls.Add(Me.tdeltaL)
        Me.Controls.Add(Me.seccntT)
        Me.Controls.Add(Me.seccntL)
        Me.Name = "PlanetSForm"
        Me.Text = "Form1"
        CType(Me.HoldT, System.ComponentModel.ISupportInitialize).EndInit()
        CType(Me.nplT, System.ComponentModel.ISupportInitialize).EndInit()
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents seccntL As System.Windows.Forms.Label
    Friend WithEvents seccntT As System.Windows.Forms.TextBox
    Friend WithEvents tdeltaL As System.Windows.Forms.Label
    Friend WithEvents tdeltaT As System.Windows.Forms.TextBox
    Friend WithEvents nplL As System.Windows.Forms.Label
    Friend WithEvents HoldL As System.Windows.Forms.Label
    Friend WithEvents HoldT As System.Windows.Forms.NumericUpDown
    Friend WithEvents nplT As System.Windows.Forms.NumericUpDown

End Class