📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
AutoRedraw = -1 'True
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 5625
ClientLeft = 0
ClientTop = 0
ClientWidth = 7500
LinkTopic = "Form1"
Picture = "Form1.frx":0000
ScaleHeight = 5625
ScaleWidth = 7500
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.TextBox Text1
Height = 495
Left = 3360
TabIndex = 3
Text = "1"
Top = 3360
Visible = 0 'False
Width = 1215
End
Begin VB.Timer Timer1
Interval = 50
Left = 720
Top = 3960
End
Begin VB.Label Label3
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "退出系统"
BeginProperty Font
Name = "隶书"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00404080&
Height = 495
Left = 5400
TabIndex = 2
Top = 4680
Width = 1980
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "图书库存管理系统"
BeginProperty Font
Name = "华文彩云"
Size = 36
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0080FFFF&
Height = 750
Left = 480
TabIndex = 1
Top = 2160
Width = 5880
End
Begin VB.Label Label1
AutoSize = -1 'True
BackColor = &H00FFFFFF&
BackStyle = 0 'Transparent
Caption = "Welcome you use"
BeginProperty Font
Name = "Arial"
Size = 36
Charset = 0
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF00FF&
Height = 825
Left = 840
TabIndex = 0
Top = 240
Width = 5745
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Label3_Click()
Unload Me
End Sub
Private Sub Timer1_Timer()
Text1.Text = Text1.Text + 1
If Text1.Text >= 20 Then
Timer1.Interval = 0
Form1.Hide
Form2.Show
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -