form1.frm
来自「vb编写的教学管理信息系统.请站长查看,谢谢!」· FRM 代码 · 共 54 行
FRM
54 行
VERSION 5.00
Begin VB.Form frmflash
Caption = "Form1"
ClientHeight = 5310
ClientLeft = 60
ClientTop = 345
ClientWidth = 7410
LinkTopic = "Form1"
Picture = "Form1.frx":0000
ScaleHeight = 5310
ScaleWidth = 7410
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer1
Interval = 500
Left = 4920
Top = 3480
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = " 教 学 管 理 系 统"
BeginProperty Font
Name = "华文行楷"
Size = 42
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H008080FF&
Height = 1095
Left = 0
TabIndex = 0
Top = 480
Width = 7095
End
End
Attribute VB_Name = "frmflash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim a As Integer
Private Sub Timer1_Timer()
a = a + 1
If a = 6 Then
frmlogin.Show
End If
If a = 6 Then
Unload Me
End If
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?