VERSION 5.00 Begin VB.Form frmCircle Caption = "Circle" ClientHeight = 2556 ClientLeft = 48 ClientTop = 276 ClientWidth = 3744 LinkTopic = "Form1" ScaleHeight = 2556 ScaleWidth = 3744 StartUpPosition = 3 'Windows Default Begin VB.CommandButton cmdDone Caption = "Done" Height = 372 Left = 2400 TabIndex = 3 Top = 1920 Width = 1092 End Begin VB.CommandButton cmdCalculate Caption = "Calculate" Height = 372 Left = 2400 TabIndex = 2 Top = 1320 Width = 1092 End Begin VB.Label lblAnswer Height = 252 Left = 240 TabIndex = 1 Top = 720 Width = 852 End Begin VB.Label lblQuestion Caption = "What is the area of a circle with radius 10?" Height = 252 Left = 240 TabIndex = 0 Top = 240 Width = 3372 End End Attribute VB_Name = "frmCircle" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Option Explicit Private Sub cmdDone_Click() Unload frmCircle End Sub