VERSION 4.00 Begin VB.Form Form1 Caption = " The Bouncing Ball" ClientHeight = 9540 ClientLeft = 3255 ClientTop = 2790 ClientWidth = 12210 Height = 10110 Left = 3195 LinkTopic = "Form1" ScaleHeight = 9540 ScaleWidth = 12210 Top = 2280 Width = 12330 Begin VB.CommandButton Command2 Caption = "Data" Height = 495 Left = 9960 TabIndex = 1 Top = 8760 Width = 855 End Begin VB.CommandButton Command1 Caption = "Start" Height = 495 Left = 11040 TabIndex = 0 Top = 8760 Width = 855 End End Attribute VB_Name = "Form1" Attribute VB_Creatable = False Attribute VB_Exposed = False Private Sub Command1_Click() MaxX = Width: MaxY = Height Exec_Rebounds End Sub Private Sub Command2_Click() Form2.Visible = True End Sub