📄 studentsandclasses.frm
字号:
VERSION 5.00
Begin VB.Form frmStudentsAndClasses
BorderStyle = 3 'Fixed Dialog
Caption = "Students and Classes"
ClientHeight = 1950
ClientLeft = 45
ClientTop = 330
ClientWidth = 5910
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1950
ScaleWidth = 5910
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton btnRunReport
Caption = ">"
Height = 255
Index = 4
Left = 120
TabIndex = 9
Top = 1560
Width = 255
End
Begin VB.CommandButton btnRunReport
Caption = ">"
Height = 255
Index = 3
Left = 120
TabIndex = 7
Top = 1200
Width = 255
End
Begin VB.CommandButton btnRunReport
Caption = ">"
Height = 255
Index = 2
Left = 120
TabIndex = 5
Top = 840
Width = 255
End
Begin VB.CommandButton btnRunReport
Caption = ">"
Height = 255
Index = 1
Left = 120
TabIndex = 3
Top = 480
Width = 255
End
Begin VB.CommandButton btnClose
Cancel = -1 'True
Caption = "&Close"
Height = 375
Left = 4680
TabIndex = 2
Top = 120
Width = 1095
End
Begin VB.CommandButton btnRunReport
Caption = ">"
Height = 255
Index = 0
Left = 120
TabIndex = 0
Top = 120
Width = 255
End
Begin VB.Label lblRptName
Caption = "Student Schedules"
Height = 255
Index = 4
Left = 480
TabIndex = 10
Top = 1560
Width = 3975
End
Begin VB.Label lblRptName
Caption = "Results By Student"
Height = 255
Index = 3
Left = 480
TabIndex = 8
Top = 1200
Width = 3975
End
Begin VB.Label lblRptName
Caption = "Results By Assignment"
Height = 255
Index = 2
Left = 480
TabIndex = 6
Top = 840
Width = 3975
End
Begin VB.Label lblRptName
Caption = "Class Results Summary"
Height = 255
Index = 1
Left = 480
TabIndex = 4
Top = 480
Width = 3975
End
Begin VB.Label lblRptName
Caption = "Class Listing By Department"
Height = 255
Index = 0
Left = 480
TabIndex = 1
Top = 120
Width = 3975
End
End
Attribute VB_Name = "frmStudentsAndClasses"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub btnClose_Click()
Unload Me
End
End Sub
Private Sub btnRunReport_Click(Index As Integer)
Select Case Index
Case 0: rptClassListingByDepartment.Show
Case 1: rptClassResultsSummary.Show
Case 2: rptResultsByAssignment.Show
Case 3: rptResultsByStudent.Show
Case 4: rptStudentsSchedule.Show
End Select
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -