home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmIncome
- Caption = "Income"
- ClientHeight = 1905
- ClientLeft = 1920
- ClientTop = 2640
- ClientWidth = 2790
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 1905
- ScaleWidth = 2790
- Begin VB.TextBox txtTotal
- Height = 375
- Left = 840
- TabIndex = 4
- Top = 600
- Width = 1815
- End
- Begin VB.CommandButton cmdShowTot
- Caption = "Determine Total Income"
- Height = 495
- Left = 120
- TabIndex = 3
- Top = 1200
- Width = 2535
- End
- Begin VB.TextBox txtName
- Height = 375
- Left = 840
- TabIndex = 1
- Top = 120
- Width = 1815
- End
- Begin VB.Label lblTotal
- Caption = "Total Income"
- Height = 375
- Left = 120
- TabIndex = 2
- Top = 600
- Width = 735
- End
- Begin VB.Label lblName
- Caption = "Name"
- Height = 255
- Left = 120
- TabIndex = 0
- Top = 240
- Width = 615
- End
- Attribute VB_Name = "frmIncome"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdShowTot_Click()
- frmSources.Show vbModal
- End Sub
-