📄 frmsplash.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.Form frmSplash
BorderStyle = 3 'Fixed Dialog
ClientHeight = 4695
ClientLeft = 255
ClientTop = 1410
ClientWidth = 7680
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4695
ScaleWidth = 7680
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin MSComctlLib.ProgressBar pb
Height = 255
Left = 0
TabIndex = 5
Top = 4440
Width = 7695
_ExtentX = 13573
_ExtentY = 450
_Version = 393216
Appearance = 1
End
Begin VB.Frame Frame1
Height = 4575
Left = 0
TabIndex = 0
Top = -120
Width = 7695
Begin VB.Timer Timer1
Interval = 500
Left = 7200
Top = 4080
End
Begin VB.Label Label1
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Developed By:"
BeginProperty Font
Name = "Arial"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00004000&
Height = 285
Left = 2625
TabIndex = 6
Top = 3705
Width = 1695
End
Begin VB.Label lblWarning
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "Warning : Illegal use of this Software may destroy all your data. Don't Take it Easily."
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000E&
Height = 195
Left = 0
TabIndex = 1
Top = 4320
Width = 7695
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Version : 2005"
BeginProperty Font
Name = "Arial"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 285
Left = 5520
TabIndex = 2
Top = 720
Width = 1635
End
Begin VB.Label lblProductName
Alignment = 2 'Center
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Inventory Management System"
BeginProperty Font
Name = "Arial"
Size = 24
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000080&
Height = 555
Left = 240
TabIndex = 4
Top = 120
Width = 7035
End
Begin VB.Label lblCompanyProduct
Alignment = 2 'Center
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Rajeev Dhawan"
BeginProperty Font
Name = "Arial"
Size = 21.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 510
Left = 4365
TabIndex = 3
Top = 3555
Width = 3195
End
Begin VB.Image imgLogo
Height = 4455
Left = -120
Picture = "frmSplash.frx":000C
Stretch = -1 'True
Top = 120
Width = 7815
End
End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Timer1_Timer()
pb.Value = pb.Value + 10
If pb.Value >= 100 Then
MAIN.Show
Unload Me
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -