?? a教師閱卷管理.frm
字號:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.Form A教師閱卷管理
Caption = "教師閱卷管理"
ClientHeight = 1365
ClientLeft = 60
ClientTop = 450
ClientWidth = 6555
LinkTopic = "Form1"
ScaleHeight = 1365
ScaleWidth = 6555
StartUpPosition = 3 '窗口缺省
Begin MSComctlLib.ListView ListView1
Height = 1095
Left = 120
TabIndex = 0
Top = 120
Width = 6255
_ExtentX = 11033
_ExtentY = 1931
LabelWrap = -1 'True
HideSelection = -1 'True
_Version = 393217
Icons = "ImageList1"
ForeColor = -2147483640
BackColor = 16777152
BorderStyle = 1
Appearance = 1
NumItems = 0
End
Begin MSComctlLib.ImageList ImageList1
Left = 480
Top = 120
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 32
ImageHeight = 32
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 5
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "A教師閱卷管理.frx":0000
Key = ""
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "A教師閱卷管理.frx":08DC
Key = ""
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "A教師閱卷管理.frx":11B8
Key = ""
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "A教師閱卷管理.frx":1A94
Key = ""
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "A教師閱卷管理.frx":2370
Key = ""
EndProperty
EndProperty
End
End
Attribute VB_Name = "A教師閱卷管理"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
'初始化用戶類型
Dim list As ListItem
Set list = ListView1.ListItems.Add(, , "教師閱卷", 1)
Set list = ListView1.ListItems.Add(, , "成績統計", 3)
Set list = ListView1.ListItems.Add(, , "成績查詢", 4)
Set list = ListView1.ListItems.Add(, , "重新登錄", 2)
Set list = ListView1.ListItems.Add(, , "密碼維護", 5)
End Sub
Private Sub ListView1_Click()
Dim key As String '保存節點的Text
key = Trim(ListView1.SelectedItem.Text)
If key = "教師閱卷" Then '如果選擇"教師閱卷"
A教師閱卷.Show
Me.Enabled = False
ElseIf key = "成績統計" Then '如果選擇"成績統計"
A成績統計.Show
Me.Enabled = False
ElseIf key = "成績查詢" Then '如果選擇"成績查詢"
A成績查詢.Show
Me.Enabled = False
ElseIf key = "重新登錄" Then '如果選擇"重新登錄"
E重新登錄.Show
Unload Me
ElseIf key = "密碼維護" Then '如果選擇"密碼維護"
E密碼維護.Show
Me.Enabled = False
End If
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -