home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Calculators
- Caption = "Mastering VB6"
- ClientHeight = 3675
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4680
- LinkTopic = "Form1"
- ScaleHeight = 3675
- ScaleWidth = 4680
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton bttnExit
- Caption = "E X I T"
- BeginProperty Font
- Name = "Verdana"
- Size = 12
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 570
- Left = 780
- TabIndex = 3
- Top = 2940
- Width = 2820
- End
- Begin VB.CommandButton bttnGame
- Caption = "Play a Game"
- BeginProperty Font
- Name = "Verdana"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 570
- Left = 780
- TabIndex = 2
- Top = 1755
- Width = 2820
- End
- Begin VB.CommandButton bttnLoan
- Caption = "Loan Calculator"
- BeginProperty Font
- Name = "Verdana"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 570
- Left = 780
- TabIndex = 1
- Top = 1005
- Width = 2820
- End
- Begin VB.CommandButton bttnMath
- Caption = "Math Calculator"
- BeginProperty Font
- Name = "Verdana"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 570
- Left = 780
- TabIndex = 0
- Top = 270
- Width = 2820
- End
- Attribute VB_Name = "Calculators"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub bttnExit_Click()
- End
- End Sub
- Private Sub bttnGame_Click()
- bttnGame.Left = Rnd() * (Calculators.Width - bttnGame.Width)
- bttnGame.Top = Rnd() * (Calculators.Height - bttnGame.Height)
- End Sub
- Private Sub bttnLoan_Click()
- LoanCalc.Show
- End Sub
- Private Sub bttnMath_Click()
- MathCalc.Show
- End Sub
-