📄 mmform.frm
字号:
VERSION 5.00
Begin VB.Form Form2
BackColor = &H00C0C0C0&
Caption = "成绩管理系统V2.1"
ClientHeight = 1680
ClientLeft = 60
ClientTop = 345
ClientWidth = 3915
FillColor = &H00E0E0E0&
ForeColor = &H00E0E0E0&
LinkTopic = "Form2"
MDIChild = -1 'True
ScaleHeight = 1680
ScaleWidth = 3915
Begin VB.CommandButton Command2
Caption = "取消"
Height = 375
Left = 2280
TabIndex = 3
Top = 960
Width = 855
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 375
Left = 480
TabIndex = 2
Top = 960
Width = 855
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
IMEMode = 3 'DISABLE
Left = 1920
PasswordChar = "*"
TabIndex = 1
Text = "wq888888"
Top = 360
Width = 1575
End
Begin VB.Label Label1
Caption = "请输入编辑密码:"
BeginProperty Font
Name = "System"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 120
TabIndex = 0
Top = 360
Width = 1815
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If Trim(Text1.Text) = "wqwqwqwq" Then
Form1.Command5.Enabled = True
Form1.Command6.Enabled = True
Form1.Command10.Enabled = True
editflag = True
Unload Me
Else
msg = MsgBox("密码输入错误,请重新输入!", , "学籍管理系统V2.1")
End If
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
CenterForm Me
End Sub
Private Sub Form_Resize()
Me.Height = 2085
Me.Width = 4035
End Sub
Private Sub Text1_GotFocus()
Text1.SelStart = 0
Text1.SelLength = 10
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -