📄 frm_help_aboutsoftware.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.Form frm_help_aboutsoftware
Caption = "Form1"
ClientHeight = 6885
ClientLeft = 60
ClientTop = 345
ClientWidth = 7425
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 6885
ScaleWidth = 7425
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF8080&
Height = 6135
Left = 2760
MultiLine = -1 'True
TabIndex = 1
Top = 360
Width = 3135
End
Begin MSComctlLib.TreeView TreeView1
Height = 6375
Left = 120
TabIndex = 0
Top = 240
Width = 2415
_ExtentX = 4260
_ExtentY = 11245
_Version = 393217
LineStyle = 1
Style = 7
Appearance = 1
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "楷体_GB2312"
Size = 11.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
End
Attribute VB_Name = "frm_help_aboutsoftware"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Dim mynod As Node
Set mynod = TreeView1.Nodes.Add(, , "code", "代码简介")
Set mynod = TreeView1.Nodes.Add("code", tvwChild, "teacher", "教师代码")
Set mynod = TreeView1.Nodes.Add("code", tvwChild, "student", "学生代码")
Set mynod = TreeView1.Nodes.Add("code", tvwChild, "course", "课程代码")
Set mynod = TreeView1.Nodes.Add("code", tvwChild, "class", "班级代码")
Set mynod = TreeView1.Nodes.Add("code", tvwChild, "test", "考试编号")
Set mynod = TreeView1.Nodes.Add(, , "use", "如何作用本软件")
Set mynod = TreeView1.Nodes.Add("use", tvwChild, "login", "登录")
Set mynod = TreeView1.Nodes.Add("use", tvwChild, "student_info", "学生信息")
Set mynod = TreeView1.Nodes.Add("use", tvwChild, "teacher_info", "教师信息")
Set mynod = TreeView1.Nodes.Add("use", tvwChild, "class_info", "班级信息")
Set mynod = TreeView1.Nodes.Add("use", tvwChild, "course_info", "课程信息")
Set mynod = TreeView1.Nodes.Add("use", tvwChild, "score_info", "成绩信息")
End Sub
Private Sub TreeView1_NodeClick(ByVal Node As MSComctlLib.Node)
Select Case Node.Text
Case "教师代码"
Text1.Text = "本系统中的教师编号采用八位编码具体的编码规则暂时采用和学生学号采用同样的编码规则。"
Case "学生代码"
Text1.Text = "本系统中的学生代码采用八位,编码规则暂时采用河南大学学生学号编码规则,以后会随实际情况而变化。"
Case "课程代码"
Text1.Text = "本系统中的课程代码,采用六位编码,前两位是年级编号,中两位是课程性质编号,后两位是课程本身编号。例如:010101表示高一语文。前01是指高一年级,中01指语、数、外三门主科,后01指语文。"
Case "班级代码"
Text1.Text = "班级代码,采用四位编码规则,前两位表示届,后两们表示班,例如:0101表示01届01班。"
Case "考试编号"
Text1.Text = "考试编号,采用四位编码规则,其前两位表示考试性质,后两位表示考试号,例如:0001表示平常测验,且为本学期第一次测验。"
Case "登录"
Text1.Text = "在本窗口的用户名输入框中输入用户名,密码输入框中输入密码,只有三次机会,若仍不正确,则不能进入系统。"
End Select
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -