VERSION 4.00 Begin VB.Form Form2 Caption = " Parameters" ClientHeight = 4380 ClientLeft = 5715 ClientTop = 4890 ClientWidth = 5250 Height = 4950 Left = 5655 LinkTopic = "Form2" ScaleHeight = 4380 ScaleWidth = 5250 Top = 4380 Visible = 0 'False Width = 5370 Begin VB.TextBox Text3 Height = 615 Left = 2520 TabIndex = 8 Text = "1.0" Top = 1920 Width = 1575 End Begin VB.TextBox Text2 Height = 615 Left = 2520 TabIndex = 7 Text = "17.0" Top = 1080 Width = 1575 End Begin VB.TextBox Text1 Height = 615 Left = 2520 TabIndex = 6 Text = "10.0" Top = 240 Width = 1575 End Begin VB.CommandButton Command1 Caption = "OK" Height = 495 Left = 2040 TabIndex = 5 Top = 3600 Width = 1095 End Begin VB.CheckBox Check1 Caption = "Check1" Height = 255 Left = 1080 TabIndex = 3 Top = 3000 Width = 255 End Begin VB.Label Label4 Caption = "Show generator circles" 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 = 375 Left = 1680 TabIndex = 4 Top = 3000 Width = 2655 End Begin VB.Label Label3 Caption = "L=" 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 = 720 TabIndex = 2 Top = 2040 Width = 1575 End Begin VB.Label Label2 Caption = "Radius R2:" 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 = 720 TabIndex = 1 Top = 1200 Width = 1695 End Begin VB.Label Label1 Caption = "Radius R1:" 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 = 720 TabIndex = 0 Top = 360 Width = 1695 End End Attribute VB_Name = "Form2" Attribute VB_Creatable = False Attribute VB_Exposed = False Private Sub Command1_Click() R1 = Val(Text1) R2 = Val(Text2) L = Val(Text3) If Check1.Value = 0 Then Generators = "n" Else Generators = "y" End If Unload Me End Sub