home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 5_2007-2008.ISO / data / Zips / Measuremen20245910122006.psc / Calculator.frm < prev    next >
Text File  |  2006-05-29  |  4KB  |  143 lines

  1. VERSION 5.00
  2. Begin VB.Form Calculator 
  3.    BorderStyle     =   0  'None
  4.    Caption         =   "RS Measurement Calculator"
  5.    ClientHeight    =   5130
  6.    ClientLeft      =   105
  7.    ClientTop       =   -240
  8.    ClientWidth     =   3000
  9.    Icon            =   "Calculator.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MDIChild        =   -1  'True
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   5130
  15.    ScaleWidth      =   3000
  16.    ShowInTaskbar   =   0   'False
  17.    Begin VB.CommandButton cmdCalculation 
  18.       Caption         =   "Calculation"
  19.       BeginProperty Font 
  20.          Name            =   "MS Sans Serif"
  21.          Size            =   9.75
  22.          Charset         =   0
  23.          Weight          =   700
  24.          Underline       =   0   'False
  25.          Italic          =   0   'False
  26.          Strikethrough   =   0   'False
  27.       EndProperty
  28.       Height          =   495
  29.       Left            =   240
  30.       TabIndex        =   4
  31.       Top             =   2280
  32.       Width           =   2535
  33.    End
  34.    Begin VB.CommandButton cmdExit 
  35.       Caption         =   "Exit"
  36.       BeginProperty Font 
  37.          Name            =   "MS Sans Serif"
  38.          Size            =   9.75
  39.          Charset         =   0
  40.          Weight          =   700
  41.          Underline       =   0   'False
  42.          Italic          =   0   'False
  43.          Strikethrough   =   0   'False
  44.       EndProperty
  45.       Height          =   495
  46.       Left            =   240
  47.       TabIndex        =   3
  48.       Top             =   3720
  49.       Width           =   2535
  50.    End
  51.    Begin VB.CommandButton cmdAbout 
  52.       Caption         =   "About"
  53.       BeginProperty Font 
  54.          Name            =   "MS Sans Serif"
  55.          Size            =   9.75
  56.          Charset         =   0
  57.          Weight          =   700
  58.          Underline       =   0   'False
  59.          Italic          =   0   'False
  60.          Strikethrough   =   0   'False
  61.       EndProperty
  62.       Height          =   495
  63.       Left            =   240
  64.       TabIndex        =   2
  65.       Top             =   3000
  66.       Width           =   2535
  67.    End
  68.    Begin VB.CommandButton cmdVolume 
  69.       Caption         =   "Volume"
  70.       BeginProperty Font 
  71.          Name            =   "MS Sans Serif"
  72.          Size            =   9.75
  73.          Charset         =   0
  74.          Weight          =   700
  75.          Underline       =   0   'False
  76.          Italic          =   0   'False
  77.          Strikethrough   =   0   'False
  78.       EndProperty
  79.       Height          =   495
  80.       Left            =   240
  81.       TabIndex        =   1
  82.       Top             =   1560
  83.       Width           =   2535
  84.    End
  85.    Begin VB.CommandButton cmdArea 
  86.       Caption         =   "Area"
  87.       BeginProperty Font 
  88.          Name            =   "MS Sans Serif"
  89.          Size            =   9.75
  90.          Charset         =   0
  91.          Weight          =   700
  92.          Underline       =   0   'False
  93.          Italic          =   0   'False
  94.          Strikethrough   =   0   'False
  95.       EndProperty
  96.       Height          =   495
  97.       Left            =   240
  98.       TabIndex        =   0
  99.       Top             =   840
  100.       Width           =   2535
  101.    End
  102. End
  103. Attribute VB_Name = "Calculator"
  104. Attribute VB_GlobalNameSpace = False
  105. Attribute VB_Creatable = False
  106. Attribute VB_PredeclaredId = True
  107. Attribute VB_Exposed = False
  108. Private Sub cmdAbout_Click()
  109. frmAbout.Show vbModal, MDIFormMain
  110. End Sub
  111.  
  112. Private Sub cmdArea_Click()
  113. frmVolume.Hide
  114. frmCalculation.Hide
  115. frmArea.Left = 3500
  116. frmArea.Top = 250
  117. frmArea.Show
  118. End Sub
  119.  
  120. Private Sub cmdCalculation_Click()
  121. frmArea.Hide
  122. frmVolume.Hide
  123. frmCalculation.Left = 3500
  124. frmCalculation.Top = 250
  125. frmCalculation.Show
  126. End Sub
  127.  
  128. Private Sub cmdExit_Click()
  129. End
  130. End Sub
  131.  
  132. Private Sub cmdVolume_Click()
  133. frmArea.Hide
  134. frmCalculation.Hide
  135. frmVolume.Left = 3500
  136. frmVolume.Top = 250
  137. frmVolume.Show
  138. End Sub
  139.  
  140. Sub Form_Unload(cancel As Integer)
  141. End
  142. End Sub
  143.