?? 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 + -