VERSION 4.00 Begin VB.Form Form1 Caption = " Surfaces Z = F(X,Y,Z)" ClientHeight = 9690 ClientLeft = 2895 ClientTop = 3000 ClientWidth = 12300 Height = 10260 Left = 2835 LinkTopic = "Form1" ScaleHeight = 9690 ScaleWidth = 12300 Top = 2490 Width = 12420 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 = 375 Left = 11040 TabIndex = 2 Top = 9120 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 = 375 Left = 8640 TabIndex = 1 Top = 9120 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 = 375 Left = 9840 TabIndex = 0 Top = 9120 Width = 975 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() End End Sub Private Sub Form_Resize() Command1.Left = Width - 3800 Command1.Top = Height - 1200 Command2.Left = Width - 2600 Command2.Top = Height - 1200 Command3.Left = Width - 1400 Command3.Top = Height - 1200 Cls End Sub