📄 welcome.frm
字号:
VERSION 5.00
Begin VB.Form Form1
BackColor = &H00FFFFFF&
BorderStyle = 0 'None
Caption = "教务管理"
ClientHeight = 4245
ClientLeft = 2325
ClientTop = 1950
ClientWidth = 6765
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "welcome.frx":0000
ScaleHeight = 4245
ScaleWidth = 6765
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer2
Interval = 1
Left = 6000
Top = 3600
End
Begin VB.Timer Timer1
Interval = 100
Left = 5280
Top = 3600
End
Begin VB.Label Label3
BackColor = &H00FF8080&
BackStyle = 0 'Transparent
Caption = "正在加载设置,请稍后...."
BeginProperty Font
Name = "楷体_GB2312"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF00FF&
Height = 375
Left = 240
TabIndex = 2
Top = 3000
Width = 4215
End
Begin VB.Label Label2
BackColor = &H00FF8080&
BackStyle = 0 'Transparent
Caption = "二级学院教务管理系统"
BeginProperty Font
Name = "隶书"
Size = 24
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 960
TabIndex = 1
Top = 1440
Width = 5295
End
Begin VB.Label Label1
Alignment = 2 'Center
BackColor = &H00FF8080&
BackStyle = 0 'Transparent
Caption = " 中 国 民 航 学 院"
BeginProperty Font
Name = "隶书"
Size = 36
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = -120
TabIndex = 0
Top = 240
Width = 6615
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Attribute VB_Ext_KEY = "RVB_UniqueId" ,"41FF01F202C1"
Attribute VB_Ext_KEY = "RVB_ModelStereotype" ,"Form"
'##ModelId=41FF01F3007F
Dim t1 As Variant
'##ModelId=41FF01F3009C
Private Sub Form_Load()
t1 = Now
End Sub
'##ModelId=41FF01F300A6
Private Sub Timer1_Timer()
If Label3.Left < 3120 Then
Label3.Left = Label3.Left + 10
Else: Label3.Left = 0
End If
End Sub
'##ModelId=41FF01F300B0
Private Sub Timer2_Timer()
Dim t2 As Variant
t2 = Now
t2 = t2 - t1
If t2 * 100000 > 2 Then
Unload Form1
Form2.Visible = True
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -