home *** CD-ROM | disk | FTP | other *** search
/ An Introduction to Progr…l Basic 6.0 (4th Edition) / An Introduction to Programming using Visual Basic 6.0.iso / PROGRAMS / CH11 / 11-3-4A.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1998-11-02  |  1.9 KB  |  67 lines

  1. VERSION 5.00
  2. Begin VB.Form frmIncome 
  3.    Caption         =   "Income"
  4.    ClientHeight    =   1905
  5.    ClientLeft      =   1920
  6.    ClientTop       =   2640
  7.    ClientWidth     =   2790
  8.    BeginProperty Font 
  9.       Name            =   "MS Sans Serif"
  10.       Size            =   8.25
  11.       Charset         =   0
  12.       Weight          =   700
  13.       Underline       =   0   'False
  14.       Italic          =   0   'False
  15.       Strikethrough   =   0   'False
  16.    EndProperty
  17.    LinkTopic       =   "Form1"
  18.    PaletteMode     =   1  'UseZOrder
  19.    ScaleHeight     =   1905
  20.    ScaleWidth      =   2790
  21.    Begin VB.TextBox txtTotal 
  22.       Height          =   375
  23.       Left            =   840
  24.       TabIndex        =   4
  25.       Top             =   600
  26.       Width           =   1815
  27.    End
  28.    Begin VB.CommandButton cmdShowTot 
  29.       Caption         =   "Determine Total Income"
  30.       Height          =   495
  31.       Left            =   120
  32.       TabIndex        =   3
  33.       Top             =   1200
  34.       Width           =   2535
  35.    End
  36.    Begin VB.TextBox txtName 
  37.       Height          =   375
  38.       Left            =   840
  39.       TabIndex        =   1
  40.       Top             =   120
  41.       Width           =   1815
  42.    End
  43.    Begin VB.Label lblTotal 
  44.       Caption         =   "Total Income"
  45.       Height          =   375
  46.       Left            =   120
  47.       TabIndex        =   2
  48.       Top             =   600
  49.       Width           =   735
  50.    End
  51.    Begin VB.Label lblName 
  52.       Caption         =   "Name"
  53.       Height          =   255
  54.       Left            =   120
  55.       TabIndex        =   0
  56.       Top             =   240
  57.       Width           =   615
  58.    End
  59. Attribute VB_Name = "frmIncome"
  60. Attribute VB_GlobalNameSpace = False
  61. Attribute VB_Creatable = False
  62. Attribute VB_PredeclaredId = True
  63. Attribute VB_Exposed = False
  64. Private Sub cmdShowTot_Click()
  65.   frmSources.Show vbModal
  66. End Sub
  67.