📄 frmstart.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.Form FrmStart
AutoRedraw = -1 'True
BackColor = &H80000009&
ClientHeight = 3195
ClientLeft = 60
ClientTop = 60
ClientWidth = 4680
ClipControls = 0 'False
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Moveable = 0 'False
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 2 '屏幕中心
Begin VB.PictureBox Picture1
BackColor = &H8000000B&
BorderStyle = 0 'None
Height = 3255
Left = 0
ScaleHeight = 3255
ScaleWidth = 1095
TabIndex = 4
Top = 0
Width = 1095
Begin VB.PictureBox PicIcon2
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H80000005&
ForeColor = &H80000008&
Height = 915
Left = 120
Picture = "FrmStart.frx":0000
ScaleHeight = 885
ScaleWidth = 765
TabIndex = 6
Top = 360
Width = 795
End
Begin VB.PictureBox PicIcon1
Appearance = 0 'Flat
AutoRedraw = -1 'True
AutoSize = -1 'True
BackColor = &H80000005&
ForeColor = &H80000008&
Height = 915
Left = 120
Picture = "FrmStart.frx":04FB
ScaleHeight = 885
ScaleWidth = 765
TabIndex = 5
Top = 1800
Width = 795
End
End
Begin VB.Timer Timer1
Interval = 4000
Left = 4200
Top = 2520
End
Begin VB.Timer Timer2
Interval = 30
Left = 4200
Top = 1920
End
Begin MSComctlLib.ProgressBar ProgressBar1
Height = 135
Left = 1200
TabIndex = 0
Top = 3000
Width = 3495
_ExtentX = 6165
_ExtentY = 238
_Version = 393216
Appearance = 0
Scrolling = 1
End
Begin VB.Label Label6
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "版权所有:"
Height = 195
Left = 1200
TabIndex = 8
Top = 2400
Width = 705
End
Begin VB.Label Label8
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "雷瑟(Racer)工作室"
Height = 195
Left = 1200
TabIndex = 7
Top = 2640
Width = 1350
End
Begin VB.Label Label3
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "本软件使用权属于"
ForeColor = &H00C0C0C0&
Height = 195
Left = 1200
TabIndex = 3
Top = 1560
Width = 1320
End
Begin VB.Line Line7
BorderColor = &H00C0C0C0&
X1 = 1200
X2 = 4920
Y1 = 1800
Y2 = 1800
End
Begin VB.Label Label4
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "上海胜隆汽配有限公司"
Height = 180
Left = 1200
TabIndex = 2
Top = 1920
Width = 1800
End
Begin VB.Label Label1
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H80000005&
Caption = "上海胜隆汽配进销存系统"
BeginProperty Font
Name = "隶书"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
Height = 300
Left = 1200
TabIndex = 1
Top = 480
Width = 3465
End
End
Attribute VB_Name = "FrmStart"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Timer1_Timer() '等待4秒
Me.Hide
Unload Me
FrmLogin.Show 1
End Sub
Private Sub Timer2_Timer()
If Me.ProgressBar1.Value + 3 < 100 Then
Me.ProgressBar1.Value = Me.ProgressBar1.Value + 1.97
Else
Exit Sub
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -