VERSION 5.00 Begin VB.Form frmMenu Caption = "CSS Menu Selection" ClientHeight = 5970 ClientLeft = 165 ClientTop = 735 ClientWidth = 9690 LinkTopic = "Form2" ScaleHeight = 5970 ScaleWidth = 9690 StartUpPosition = 3 'Windows Default Begin VB.CommandButton cmdLoad Caption = "List name and maximum teaching load " Height = 615 Left = 6600 TabIndex = 15 Top = 3720 Width = 1935 End Begin VB.CommandButton cmdCompScienroll Caption = "List all the course numbers and enrollments for CompSci" Height = 615 Left = 4560 TabIndex = 14 Top = 3720 Width = 1935 End Begin VB.CommandButton cmdRank Caption = "List of teachers ordered by Last name and rank" Height = 615 Left = 2640 TabIndex = 13 Top = 3720 Width = 1815 End Begin VB.CommandButton cmdEmployee Caption = "Employee" Height = 615 Index = 0 Left = 5400 TabIndex = 12 Top = 2160 Width = 1215 End Begin VB.CommandButton cmdCompSci Caption = "List all Computer Science Courses" Height = 615 Index = 1 Left = 840 TabIndex = 10 Top = 3720 Width = 1695 End Begin VB.CommandButton cmdCouses Caption = "Courses" Height = 615 Index = 3 Left = 1440 TabIndex = 8 Top = 2160 Width = 1215 End Begin VB.CommandButton cmdSchedule Caption = "Schedule" Height = 615 Index = 2 Left = 2760 TabIndex = 7 Top = 2160 Width = 1215 End Begin VB.CommandButton cmdRooms Caption = "Rooms" Height = 615 Index = 1 Left = 4080 TabIndex = 6 Top = 2160 Width = 1215 End Begin VB.CommandButton cmdFaculty Caption = "Faculty" Height = 615 Index = 0 Left = 120 TabIndex = 5 Top = 2160 Width = 1215 End Begin VB.CommandButton cmdExit Caption = "Exit the Application" Height = 615 Index = 1 Left = 3240 TabIndex = 0 Top = 5280 Width = 3135 End Begin VB.Label lbl3 Alignment = 2 'Center Caption = "Task Selection" BeginProperty Font Name = "MS Sans Serif" Size = 24 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 975 Left = 2880 TabIndex = 11 Top = 360 Width = 4215 End Begin VB.Label lbl2 Alignment = 2 'Center Caption = "To: Execute one of the pre-made Queries CLICK one of the buttons below." BeginProperty Font Name = "MS Sans Serif" Size = 13.5 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 495 Index = 1 Left = 0 TabIndex = 9 Top = 3000 Width = 9615 End Begin VB.Label lbl2 Alignment = 2 'Center Caption = "To: Add, Delete, Modify, Records CLICK one of the buttons below." BeginProperty Font Name = "MS Sans Serif" Size = 13.5 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 495 Index = 0 Left = 0 TabIndex = 4 Top = 1440 Width = 9615 End Begin VB.Label lblCSS Alignment = 2 'Center Caption = "CSS" BeginProperty Font Name = "Tahoma" Size = 36 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 975 Left = 0 TabIndex = 3 Top = 360 Width = 2295 End Begin VB.Label lblorg Alignment = 1 'Right Justify Caption = "An Aaron's Computer Services Production" Height = 255 Index = 0 Left = 6480 TabIndex = 2 Top = 5280 Width = 3135 End Begin VB.Label lblweb Alignment = 1 'Right Justify Caption = "http://blacksunhine.freeservers.com " Height = 255 Index = 1 Left = 6480 TabIndex = 1 Top = 5640 Width = 3135 End Begin VB.Menu mnuFile Caption = "&File" Begin VB.Menu mnuExit Caption = "E&xit" End End End Attribute VB_Name = "frmMenu" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub cmdCouses_Click(Index As Integer) frmCourse.Show frmMenu.Hide End Sub Private Sub cmdEmployee_Click(Index As Integer) frmEmployee.Show frmMenu.Hide End Sub Private Sub cmdExit_Click(Index As Integer) Unload frmMenu frmMain.Show End Sub Private Sub cmdFaculty_Click(Index As Integer) frmFaculty.Show frmMenu.Hide End Sub Private Sub cmdRooms_Click(Index As Integer) frmRoom.Show frmMenu.Hide End Sub Private Sub cmdSchedule_Click(Index As Integer) frmSchedule.Show frmMenu.Hide End Sub Private Sub mnuExit_Click() Unload frmMenu frmMain.Show End Sub