📄 form4.frm
字号:
VERSION 5.00
Begin VB.Form jinrujiemian
BorderStyle = 0 'None
Caption = "欢迎界面"
ClientHeight = 6255
ClientLeft = 0
ClientTop = 0
ClientWidth = 10680
LinkTopic = "Form3"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 6255
ScaleWidth = 10680
ShowInTaskbar = 0 'False
StartUpPosition = 1 'CenterOwner
Begin VB.Timer Timer1
Interval = 800
Left = 600
Top = 5760
End
Begin VB.Label Label1
BackColor = &H00C0C0C0&
BackStyle = 0 'Transparent
Caption = "欢迎进入工资管理系统"
BeginProperty Font
Name = "华文彩云"
Size = 21.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H008080FF&
Height = 615
Left = 6120
TabIndex = 0
Top = 120
Width = 4695
End
Begin VB.Image Image1
Height = 7065
Left = 0
Picture = "form4.frx":0000
Stretch = -1 'True
Top = -840
Width = 12465
End
End
Attribute VB_Name = "jinrujiemian"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Image1_Click()
Timer1.Enabled = False
frmlogin.Show
Unload jinrujiemian
End Sub
Private Sub Timer1_Timer()
If Label1.Left + 4695 > 0 Then
Label1.Left = Label1.Left - 200
Else
Label1.Left = 10815
End If
Static i As Integer
i = i + 1
If i = 20 Then
frmlogin.Show
Unload form4
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -