home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frm3_5_6
- Caption = "3-5-6"
- ClientHeight = 2055
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 3735
- 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 = 2055
- ScaleWidth = 3735
- Begin VB.PictureBox picTable
- Height = 1215
- Left = 120
- ScaleHeight = 1155
- ScaleWidth = 3435
- TabIndex = 1
- Top = 720
- Width = 3495
- End
- Begin VB.CommandButton cmdDisplay
- Caption = "Display Table"
- Height = 495
- Left = 600
- TabIndex = 0
- Top = 120
- Width = 2535
- End
- Attribute VB_Name = "frm3_5_6"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdDisplay_Click()
- picTable.Cls
- picTable.Print Tab(10); "1970-71"; Tab(20); "1980-81"; Tab(30); "1990-91"
- picTable.Print
- picTable.Print "Male"; Tab(10); 476; Tab(20); 470; Tab(30); 490
- picTable.Print "Female"; Tab(10); 364; Tab(20); 465; Tab(30); 560
- picTable.Print "Total"; Tab(10); 840; Tab(20); 935; Tab(30); 1050
- End Sub
-