📄 frm_page.frm
字号:
VERSION 5.00
Begin VB.Form Frm_Page
BorderStyle = 3 'Fixed Dialog
ClientHeight = 9390
ClientLeft = 1860
ClientTop = 1095
ClientWidth = 11355
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "Frm_Page.frx":0000
ScaleHeight = 9390
ScaleWidth = 11355
ShowInTaskbar = 0 'False
Begin VB.Timer Timer1
Interval = 100
Left = 4560
Top = 2880
End
Begin VB.Label Lbl_In
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = ">>进入"
BeginProperty Font
Name = "华文彩云"
Size = 18
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF8080&
Height = 360
Left = 9480
TabIndex = 1
Top = 8640
Width = 1140
End
Begin VB.Label Lbl_Cap
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "欢迎使用新航标图书管理系统"
BeginProperty Font
Name = "隶书"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00404040&
Height = 435
Left = 1560
TabIndex = 0
Top = 1680
Width = 6045
End
End
Attribute VB_Name = "Frm_Page"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim step As Integer
Private Sub Form_Load()
step = 1
End Sub
Private Sub Lbl_In_Click()
Frm_Mainpage.Show
Timer1.Enabled = False
Unload Me
End Sub
Private Sub Timer1_Timer()
If Lbl_Cap.Left < Frm_Page.ScaleWidth Then
Lbl_Cap.Move Lbl_Cap.Left + 60 * step, Lbl_Cap.Top
Else
Lbl_Cap.Left = -Lbl_Cap.Width
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -