VERSION 4.00 Begin VB.Form Form1 Caption = " Parametric Surfaces" ClientHeight = 8790 ClientLeft = 2700 ClientTop = 3030 ClientWidth = 11310 Height = 9360 Left = 2640 LinkTopic = "Form1" ScaleHeight = 8790 ScaleWidth = 11310 Top = 2520 Width = 11430 Begin VB.CommandButton Command3 Caption = "Quit" 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 = 10200 TabIndex = 2 Top = 8160 Width = 855 End Begin VB.CommandButton Command2 Caption = "Data" 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 = 7920 TabIndex = 1 Top = 8160 Width = 975 End Begin VB.CommandButton Command1 Caption = "Draw" 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 = 9120 TabIndex = 0 Top = 8160 Width = 855 End End Attribute VB_Name = "Form1" Attribute VB_Creatable = False Attribute VB_Exposed = False Private Sub Command1_Click() DrawSurface End Sub Private Sub Command2_Click() Form2.Visible = True End Sub Private Sub Command3_Click() 'Close application End End Sub