coverfrm.frm
来自「我编的学分管理程序,安装包原代码都有!VB入门的好东西」· FRM 代码 · 共 49 行
FRM
49 行
VERSION 5.00
Begin VB.MDIForm coverFrm
BackColor = &H8000000C&
Caption = "思远学分统计"
ClientHeight = 8505
ClientLeft = 60
ClientTop = 345
ClientWidth = 11880
LinkMode = 1 'Source
LinkTopic = "MDIForm1"
WindowState = 2 'Maximized
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 1000
Left = 180
Top = 690
End
End
Attribute VB_Name = "coverFrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub MDIForm_Load()
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
PasswdFrm.Left = 1200
PasswdFrm.Top = 1200
DoEvents
PasswdFrm.Height = 1860
PasswdFrm.Width = 4600
PasswdFrm.Show
DoEvents
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?