📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmSplash
BackColor = &H00800000&
BorderStyle = 3 'Fixed Dialog
ClientHeight = 3090
ClientLeft = 255
ClientTop = 1410
ClientWidth = 7260
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3090
ScaleWidth = 7260
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Frame Frame1
BackColor = &H00800000&
BorderStyle = 0 'None
Height = 2550
Left = 150
TabIndex = 0
Top = 150
Width = 7065
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "Brand X Software Pueblo, Colorado"
BeginProperty Font
Name = "Arial"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000E&
Height = 615
Left = 750
TabIndex = 4
Top = 1200
Width = 1665
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "The Cheapest Word Processor in the world!"
BeginProperty Font
Name = "Arial"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000E&
Height = 615
Left = 4050
TabIndex = 2
Top = 1050
Width = 2865
End
Begin VB.Label Label1
Alignment = 2 'Center
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "LysleWord!"
BeginProperty Font
Name = "CAC Camelot"
Size = 24
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000E&
Height = 555
Left = 3750
TabIndex = 1
Top = 300
Width = 2445
End
Begin VB.Image imgLogo
BorderStyle = 1 'Fixed Single
Height = 885
Left = 0
Picture = "frmSplash.frx":000C
Stretch = -1 'True
Top = 150
Width = 3465
End
End
Begin VB.Label Label3
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "S. Lysle: 1998 All rights reserved"
BeginProperty Font
Name = "Arial"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H8000000E&
Height = 315
Left = 150
TabIndex = 3
Top = 2700
Width = 6915
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
frmMain.Show
End Sub
Private Sub Form_Load()
imgLogo.Picture = LoadPicture(App.Path & "\BXSWlogo.bmp")
End Sub
Private Sub Frame1_Click()
frmSplash.Icon = LoadPicture(App.Path & "\FlagScot.ico")
Unload Me
frmMain.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -