📄 登录界面.frm
字号:
VERSION 5.00
Begin VB.Form Form13
Caption = "Form13"
ClientHeight = 7170
ClientLeft = 60
ClientTop = 450
ClientWidth = 9795
BeginProperty Font
Name = "WST_Fren"
Size = 9
Charset = 2
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FFFF&
Icon = "登录界面.frx":0000
LinkTopic = "Form13"
Picture = "登录界面.frx":08CA
ScaleHeight = 7170
ScaleWidth = 9795
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "统"
BeginProperty Font
Name = "宋体"
Size = 36
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 855
Index = 11
Left = 7920
TabIndex = 8
Top = 3120
Visible = 0 'False
Width = 975
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "系"
BeginProperty Font
Name = "宋体"
Size = 36
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 855
Index = 10
Left = 6960
TabIndex = 7
Top = 3120
Visible = 0 'False
Width = 975
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "理"
BeginProperty Font
Name = "宋体"
Size = 36
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 855
Index = 9
Left = 6000
TabIndex = 6
Top = 3120
Visible = 0 'False
Width = 975
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "管"
BeginProperty Font
Name = "宋体"
Size = 36
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 855
Index = 8
Left = 5040
TabIndex = 5
Top = 3120
Visible = 0 'False
Width = 975
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "息"
BeginProperty Font
Name = "宋体"
Size = 36
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 855
Index = 7
Left = 4080
TabIndex = 4
Top = 3120
Visible = 0 'False
Width = 975
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "信"
BeginProperty Font
Name = "宋体"
Size = 36
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 855
Index = 6
Left = 3120
TabIndex = 3
Top = 3120
Visible = 0 'False
Width = 975
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "生"
BeginProperty Font
Name = "宋体"
Size = 36
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 855
Index = 5
Left = 2160
TabIndex = 2
Top = 3120
Visible = 0 'False
Width = 975
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "学"
BeginProperty Font
Name = "宋体"
Size = 36
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 855
Index = 4
Left = 1200
TabIndex = 1
Top = 3120
Visible = 0 'False
Width = 975
End
Begin VB.Label Label2
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "进 入"
BeginProperty Font
Name = "楷体_GB2312"
Size = 36
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FFFF&
Height = 975
Left = 6960
TabIndex = 0
Top = 5760
Width = 2175
End
End
Attribute VB_Name = "Form13"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Label2_Click()
frmLogin.Show
Me.Hide
End Sub
Private Sub Timer1_Timer()
Static Index As Integer
Dim i As Integer
If Index <> 12 Then
Label1(Index).Visible = True
Index = Index + 1
Else
For i = 0 To 11
Label1(i).Visible = False
Next i
Index = 0
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -