VERSION 5.00 Begin VB.Form frmCourse Caption = "Course Records" ClientHeight = 7320 ClientLeft = 165 ClientTop = 735 ClientWidth = 8220 LinkTopic = "Form2" ScaleHeight = 7320 ScaleWidth = 8220 StartUpPosition = 3 'Windows Default Begin VB.TextBox txtCnum Height = 375 Left = 2280 TabIndex = 26 Top = 2320 Width = 1935 End Begin VB.TextBox txtCredit Height = 375 Left = 2280 TabIndex = 25 Top = 2880 Width = 1935 End Begin VB.TextBox txtLab Height = 375 Left = 2280 TabIndex = 24 Top = 3440 Width = 1935 End Begin VB.TextBox txtGrade Height = 375 Left = 2280 TabIndex = 23 Top = 4000 Width = 1935 End Begin VB.TextBox txtDescriptoin Height = 375 Left = 2280 TabIndex = 22 Top = 4560 Width = 1935 End Begin VB.TextBox txtDnum Height = 375 Left = 2280 TabIndex = 21 Top = 1760 Width = 1935 End Begin VB.TextBox txtCname Height = 375 Left = 2280 TabIndex = 20 Top = 1200 Width = 1935 End Begin VB.CommandButton cmdExit Caption = "Exit Course Records" Height = 615 Index = 1 Left = 4560 TabIndex = 10 Top = 5880 Width = 3135 End Begin VB.CommandButton cmdNavigate Caption = "<< First" Height = 495 Index = 0 Left = 120 TabIndex = 9 Top = 6720 Width = 975 End Begin VB.CommandButton cmdNavigate Caption = "< Prev" Height = 495 Index = 1 Left = 1200 TabIndex = 8 Top = 6720 Width = 975 End Begin VB.CommandButton cmdNavigate Caption = "Next >" Height = 495 Index = 2 Left = 2280 TabIndex = 7 Top = 6720 Width = 975 End Begin VB.CommandButton cmdNavigate Caption = "Last >>" Height = 495 Index = 3 Left = 3360 TabIndex = 6 Top = 6720 Width = 975 End Begin VB.CommandButton cmdAdd Caption = "Add" Height = 495 Left = 120 TabIndex = 5 Top = 5880 Width = 975 End Begin VB.CommandButton cmdUpdate Caption = "Update" Height = 495 Left = 1200 TabIndex = 4 Top = 5880 Width = 975 End Begin VB.CommandButton cmdDelete Caption = "Delete" Height = 495 Left = 2280 TabIndex = 3 Top = 5880 Width = 975 End Begin VB.CommandButton cmdExit Caption = "Exit" Height = 495 Index = 0 Left = 3360 TabIndex = 2 Top = 5880 Width = 975 End Begin VB.Label lblDescriptoin Alignment = 1 'Right Justify Caption = "Description" Height = 255 Index = 0 Left = 240 TabIndex = 19 Top = 4560 Width = 1815 End Begin VB.Label lblGrade Alignment = 1 'Right Justify Caption = "Grading Method" Height = 255 Index = 0 Left = 240 TabIndex = 18 Top = 4020 Width = 1815 End Begin VB.Label lblLab Alignment = 1 'Right Justify Caption = "Lab Hours" Height = 255 Index = 0 Left = 240 TabIndex = 17 Top = 3480 Width = 1815 End Begin VB.Label lblCredit Alignment = 1 'Right Justify Caption = "Credit Hours" Height = 255 Index = 0 Left = 240 TabIndex = 16 Top = 2940 Width = 1815 End Begin VB.Label lblCnum Alignment = 1 'Right Justify Caption = "Course Number" Height = 255 Index = 0 Left = 240 TabIndex = 15 Top = 2400 Width = 1815 End Begin VB.Label lblDnum Alignment = 1 'Right Justify Caption = "Department Number" Height = 255 Index = 0 Left = 240 TabIndex = 14 Top = 1860 Width = 1815 End Begin VB.Label lblCname Alignment = 1 'Right Justify Caption = "Course Name" Height = 255 Index = 0 Left = 240 TabIndex = 13 Top = 1320 Width = 1815 End Begin VB.Label lblorg Alignment = 1 'Right Justify Caption = "An Aaron's Computer Services Production" Height = 255 Index = 0 Left = 4560 TabIndex = 12 Top = 6600 Width = 3135 End Begin VB.Label lblweb Alignment = 1 'Right Justify Caption = "http://blacksunhine.freeservers.com " Height = 255 Index = 1 Left = 4560 TabIndex = 11 Top = 6960 Width = 3135 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 = 1 Top = 120 Width = 2295 End Begin VB.Label lbl3 Alignment = 2 'Center Caption = "Course Records" 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 = 2520 TabIndex = 0 Top = 0 Width = 5655 End Begin VB.Menu mnuFile Caption = "&File" Begin VB.Menu mnuExit Caption = "E&xit" End End End Attribute VB_Name = "frmCourse" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub cmdExit_Click(Index As Integer) Unload frmCourse frmMenu.Show End Sub Private Sub Form_Load() End Sub Private Sub lblweb_Click(Index As Integer) End Sub Private Sub mnuExit_Click() Unload frmCourse frmMenu.Show End Sub