VERSION 4.00 Begin VB.Form Form1 AutoRedraw = -1 'True BackColor = &H00FFFFFF& Caption = "CHAOS" ClientHeight = 7590 ClientLeft = 2205 ClientTop = 2145 ClientWidth = 9885 ForeColor = &H00FF0000& Height = 7995 Left = 2145 LinkTopic = "Form1" ScaleHeight = 7590 ScaleWidth = 9885 Top = 1800 Width = 10005 Begin VB.CommandButton Command2 Caption = "&Go" Height = 375 Left = 6720 TabIndex = 1 Top = 6960 Width = 1095 End Begin VB.CommandButton Command1 Caption = "&Quit" Height = 375 Left = 8400 TabIndex = 0 Top = 6960 Width = 1095 End End Attribute VB_Name = "Form1" Attribute VB_Creatable = False Attribute VB_Exposed = False Private Sub Command1_Click() Unload Me End End Sub Private Sub Command2_Click() Chaos1 End Sub Private Sub Form_Load() MaxX = Form1.Width - 900 MaxY = Form1.Height - 1900 End Sub Public Sub Form_Paint() End Sub