frmsysterm.frm
来自「用VB和ACCESS开发的学籍管理系统」· FRM 代码 · 共 72 行
FRM
72 行
VERSION 5.00
Begin VB.Form frmsysterm
BackColor = &H00C0FFFF&
Caption = "用户管理"
ClientHeight = 2835
ClientLeft = 60
ClientTop = 345
ClientWidth = 3495
LinkTopic = "Form1"
ScaleHeight = 2835
ScaleWidth = 3495
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command4
Caption = "退出"
Height = 375
Left = 2160
TabIndex = 3
Top = 2280
Width = 1215
End
Begin VB.CommandButton Command3
Caption = "重新登陆"
Height = 375
Left = 120
TabIndex = 2
Top = 1680
Width = 1215
End
Begin VB.CommandButton Command2
Caption = "添加用户"
Height = 375
Left = 120
TabIndex = 1
Top = 960
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "修改密码"
Height = 375
Left = 120
TabIndex = 0
Top = 240
Width = 1215
End
End
Attribute VB_Name = "frmsysterm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
frmPass.Show
End Sub
Private Sub Command2_Click()
DlgPass.Show
End Sub
Private Sub Command3_Click()
Unload Me
Unload FrmMain
DlgLogin.Show
End Sub
Private Sub Command4_Click()
Unload Me
End Sub
Private Sub Form_Load()
MakeCenter frmsysterm
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?