home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frm3_5_5
- Caption = "3-5-5"
- ClientHeight = 2988
- ClientLeft = 1092
- ClientTop = 1488
- ClientWidth = 6420
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 7.8
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 2988
- ScaleWidth = 6420
- Begin VB.PictureBox picTable
- Height = 1935
- Left = 120
- ScaleHeight = 1884
- ScaleWidth = 6084
- TabIndex = 1
- Top = 720
- Width = 6132
- End
- Begin VB.CommandButton cmdDisplay
- Caption = "Display Table"
- Height = 495
- Left = 1680
- TabIndex = 0
- Top = 120
- Width = 2895
- End
- Attribute VB_Name = "frm3_5_5"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdDisplay_Click()
- picTable.Cls
- picTable.Print " ", "Pb 2-yr", "Pr 2-yr", "Pb 4-yr", "Pr 4-yr"
- picTable.Print
- picTable.Print "Tuit & Fees", 1387, 6350, 2860, 12432
- picTable.Print "Bks & Suppl", 577, 567, 591, 601
- picTable.Print "Board", 1752, 1796, 1721, 1845
- picTable.Print "Trans", 894, 902, 929, 863
- picTable.Print "Other Exp", 1142, 1220, 1348, 1169
- picTable.Print " ", "----------", "----------", "----------", "----------"
- picTable.Print "Total", 5752, 10835, 7449, 16910
- End Sub
-