📄 frmstart.frm
字号:
VERSION 5.00
Begin VB.Form frmstart
BackColor = &H00008000&
Caption = "frmreturn"
ClientHeight = 7965
ClientLeft = 60
ClientTop = 345
ClientWidth = 10245
LinkTopic = "Form1"
LockControls = -1 'True
Picture = "frmstart.frx":0000
ScaleHeight = 7965
ScaleWidth = 10245
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer2
Left = 240
Top = 360
End
Begin VB.CommandButton cmdlend
BackColor = &H0000C000&
Caption = "借阅管理系统"
BeginProperty Font
Name = "华文新魏"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1095
Left = 120
Style = 1 'Graphical
TabIndex = 3
Top = 3840
Width = 3255
End
Begin VB.CommandButton cmdexit
BackColor = &H0000C000&
Caption = "退出"
BeginProperty Font
Name = "华文新魏"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 735
Left = 8400
Style = 1 'Graphical
TabIndex = 2
Top = 7080
Width = 1575
End
Begin VB.CommandButton cmdreturn
BackColor = &H0000C000&
Caption = "查询管理系统"
BeginProperty Font
Name = "华文新魏"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1095
Left = 120
Style = 1 'Graphical
TabIndex = 1
Top = 5040
Width = 3255
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "欢迎进入图书管理系统!"
BeginProperty Font
Name = "华文新魏"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 735
Left = 0
TabIndex = 4
Top = 1560
Width = 5535
End
Begin VB.Label lblmask
BackColor = &H00FFFFC0&
BackStyle = 0 'Transparent
Caption = "图书馆借书管理系统"
BeginProperty Font
Name = "华文新魏"
Size = 42
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 735
Left = 1080
TabIndex = 0
Top = 480
Width = 8535
End
End
Attribute VB_Name = "frmstart"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdexit_Click() '退出程序
End
End Sub
Private Sub cmdlend_Click() '进入借书系统
frmlender.Show
Me.Hide
End Sub
Private Sub cmdreturn_Click() '进入查询系统
frmquery.Show
Me.Hide
End Sub
Private Sub Form_Load() ' 对计时器的初始化
Timer2.Enabled = True
Timer2.Interval = 500
End Sub
Private Sub Timer2_Timer() '文字移动和颜色的改变
Label1.Left = Label1.Left + 500
If Label1.Left > frmstart.Width Then
Label1.Left = 0
End If
Label1.ForeColor = RGB(Rnd * 255, Rnd * 255, Rnd * 255)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -