📄 frmsplash.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmSplash
BorderStyle = 3 'Fixed Dialog
Caption = "welcome"
ClientHeight = 4245
ClientLeft = 255
ClientTop = 1800
ClientWidth = 7380
ClipControls = 0 'False
ControlBox = 0 'False
BeginProperty Font
Name = "华文新魏"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4245
ScaleWidth = 7380
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
DragMode = 1 'Automatic
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 4050
Left = 120
TabIndex = 0
Top = 60
Width = 7080
Begin VB.Timer Timer1
Interval = 2500
Left = 3360
Top = 3480
End
Begin MSComctlLib.ProgressBar ProgressBar1
Height = 255
Left = 720
TabIndex = 2
Top = 3600
Width = 5895
_ExtentX = 10398
_ExtentY = 450
_Version = 393216
Appearance = 1
Scrolling = 1
End
Begin VB.Label lblInfo
Caption = "开发者:张连元 窦贺艳"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Index = 6
Left = 840
TabIndex = 8
Top = 3240
Width = 2415
End
Begin VB.Label lblInfo
Caption = "版权所有,违者必究!"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Index = 5
Left = 840
TabIndex = 7
Top = 2880
Width = 2415
End
Begin VB.Label lblInfo
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "数据环境:MS SQL Server2000"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 180
Index = 4
Left = 3960
TabIndex = 6
Top = 2520
Width = 2670
End
Begin VB.Label lblInfo
Alignment = 1 'Right Justify
AutoSize = -1 'True
Caption = "开发环境:Visual Basic 6.0"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 180
Index = 3
Left = 3960
TabIndex = 5
Top = 2040
Width = 2565
End
Begin VB.Label Label4
Caption = "1.0.0"
Height = 375
Left = 6120
TabIndex = 4
Top = 1080
Width = 615
End
Begin VB.Label Label3
Caption = "——毕业设计课题分配系统"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2400
TabIndex = 3
Top = 960
Width = 3615
End
Begin VB.Image imgLogo
Height = 1785
Left = 600
Picture = "frmSplash.frx":000C
Stretch = -1 'True
Top = 840
Width = 1455
End
Begin VB.Label lblCompanyProduct
AutoSize = -1 'True
Caption = "需求分配系统"
BeginProperty Font
Name = "宋体"
Size = 18
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
Left = 2040
TabIndex = 1
Top = 480
Width = 2250
End
End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_KeyPress(KeyAscii As Integer)
Unload Me
End Sub
Private Sub Frame1_Click()
Unload Me
End Sub
Private Sub frmSplash_Load()
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
ProgressBar1.Value = 50
If ProgressBar1.Value < ProgressBar1.Max Then
ProgressBar1.Value = ProgressBar1.Value + 50
Main_MIS.Show
Unload frmSplash
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -