VERSION 4.00 Begin VB.Form Form2 Caption = "Parameters" ClientHeight = 4065 ClientLeft = 5355 ClientTop = 4290 ClientWidth = 5025 Height = 4635 Left = 5295 LinkTopic = "Form2" ScaleHeight = 4065 ScaleWidth = 5025 Top = 3780 Width = 5145 Begin VB.CommandButton Command1 Caption = "Ok" BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "MS Sans Serif" Size = 9.75 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 495 Left = 1680 TabIndex = 6 Top = 3240 Width = 1095 End Begin VB.TextBox Text3 Height = 495 Left = 3240 TabIndex = 5 Text = "10" Top = 2040 Width = 1095 End Begin VB.TextBox Text2 Height = 495 Left = 3240 TabIndex = 3 Text = "0.75" Top = 1200 Width = 1095 End Begin VB.TextBox Text1 Height = 495 Left = 3240 TabIndex = 1 Text = "2.0" Top = 480 Width = 1095 End Begin VB.Label Label3 Caption = "Number of rebunds" BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "MS Sans Serif" Size = 9.75 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 615 Left = 600 TabIndex = 4 Top = 2040 Width = 2295 End Begin VB.Label Label2 Caption = "Damping Coefficient" BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "MS Sans Serif" Size = 9.75 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 615 Left = 600 TabIndex = 2 Top = 1200 Width = 2295 End Begin VB.Label Label1 Caption = "Horizontal Speed" BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} Name = "MS Sans Serif" Size = 9.75 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 615 Left = 600 TabIndex = 0 Top = 480 Width = 2175 End End Attribute VB_Name = "Form2" Attribute VB_Creatable = False Attribute VB_Exposed = False Private Sub Command1_Click() vx = Val(Text1) amort = Val(Text2) nrebounds = Val(Text3) Unload Me End Sub