VERSION 4.00 Begin VB.Form Form1 Caption = " Cycloidal Curves" ClientHeight = 9750 ClientLeft = 3555 ClientTop = 3195 ClientWidth = 11325 Height = 10320 Left = 3495 LinkTopic = "Form1" ScaleHeight = 9750 ScaleWidth = 11325 Top = 2685 Width = 11445 Begin VB.CommandButton Command2 Caption = "Data" Height = 375 Left = 9000 TabIndex = 1 Top = 9240 Width = 735 End Begin VB.CommandButton Command1 Caption = "Start" Height = 375 Left = 10200 TabIndex = 0 Top = 9240 Width = 735 End End Attribute VB_Name = "Form1" Attribute VB_Creatable = False Attribute VB_Exposed = False Private Sub Command1_Click() MaxX = Width: MaxY = Height Exec_Cyclo End Sub Private Sub Command2_Click() If R1 > 0 Then Form2.Text1 = Str$(R1) If R2 > 0 Then Form2.Text2 = Str$(R2) If L > 0 Then Form2.Text3 = Str$(L) Form2.Visible = True End Sub