📄 frminfo.frm
字号:
VERSION 5.00
Begin VB.Form frminfo
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 6960
ClientLeft = 5985
ClientTop = 990
ClientWidth = 9210
LinkTopic = "Form1"
Palette = "frminfo.frx":0000
Picture = "frminfo.frx":2004D
ScaleHeight = 6960
ScaleWidth = 9210
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Interval = 50
Left = 7080
Top = 4920
End
Begin VB.Label Label2
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 = &H00FF00FF&
Height = 375
Left = 3720
TabIndex = 1
Top = 3240
Width = 1815
End
Begin VB.Label Label1
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 = &H00800000&
Height = 495
Left = 1680
TabIndex = 0
Top = 720
Width = 5295
End
End
Attribute VB_Name = "frminfo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Label1_Click()
Form1.Show
Unload Me
End Sub
Private Sub Label2_Click()
Form1.Show
Unload Me
End Sub
Private Sub Timer1_Timer()
If Label1.Left + Label1.Width > 0 Then
Label1.Move Label1.Left - 20
Else
Label1.Left = frminof.ScaleWidth
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -