VERSION 4.00 Begin VB.Form Form1 AutoRedraw = -1 'True BackColor = &H00FFFFFF& Caption = "Domain of Mandelbrot" ClientHeight = 6525 ClientLeft = 2445 ClientTop = 2865 ClientWidth = 8325 ForeColor = &H00FF0000& Height = 6930 Left = 2385 LinkTopic = "Form1" ScaleHeight = 6525 ScaleWidth = 8325 Top = 2520 Width = 8445 Begin VB.CommandButton Command2 Caption = "&Go" Height = 375 Left = 5760 TabIndex = 1 Top = 6000 Width = 1095 End Begin VB.CommandButton Command1 Caption = "&Quit" Height = 375 Left = 7080 TabIndex = 0 Top = 6000 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() Mandel End Sub Public Sub Form_Paint() End Sub