📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 3 'Fixed Dialog
ClientHeight = 4335
ClientLeft = 255
ClientTop = 1410
ClientWidth = 6960
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 289
ScaleMode = 3 'Pixel
ScaleWidth = 464
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Interval = 3000
Left = 480
Top = 3240
End
Begin VB.Frame Frame1
Height = 4050
Left = 120
TabIndex = 0
Top = 120
Width = 6720
Begin VB.PictureBox Picture1
Height = 2295
Left = 240
Picture = "frmSplash.frx":000C
ScaleHeight = 2235
ScaleWidth = 1515
TabIndex = 4
Top = 360
Width = 1575
End
Begin VB.Label lblWarning
Alignment = 2 'Center
Caption = "中国VB网提供下载,http://www.chinaVB.net"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 720
TabIndex = 7
Top = 3480
Width = 5565
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "有任何意见或要求,请与我联系"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2520
TabIndex = 6
Top = 1200
Width = 3975
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "电子邮箱:lovemore@citiz.net"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2520
TabIndex = 5
Top = 1680
Width = 3735
End
Begin VB.Label lblCopyright
Caption = "心海版权所有 Copyright@@2000-12"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 2280
TabIndex = 2
Top = 2880
Width = 3855
End
Begin VB.Label lblCompany
Caption = "其他软件介绍:文本加密器1.03版"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 2400
TabIndex = 1
Top = 2280
Width = 3615
End
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
Caption = "图书管理系统1.00版"
BeginProperty Font
Name = "宋体"
Size = 18
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
Left = 2640
TabIndex = 3
Top = 480
Width = 3420
End
End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
' **********************************************************************
' 描 述:新海图书管理系统
' 中国VB网收集整理 http://www.ChinaVB.net
' QQ交流群:13047826 14356878
' 发表源码或文章请发邮件到:info@chinavb.net
' **********************************************************************Dim i As Integer
Private Sub Form_Load()
SetWindowPos Me.hwnd, -1, 50, 50, 470, 300, &H200
End Sub
Private Sub Timer1_Timer()
Unload Me
Form1.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -