📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmsplash
ClientHeight = 3195
ClientLeft = 60
ClientTop = 60
ClientWidth = 4680
ControlBox = 0 'False
ForeColor = &H00C0C0C0&
Icon = "frmsplash.frx":0000
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 2 'CenterScreen
Begin VB.Label Label4
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 360
TabIndex = 3
Top = 2160
Width = 3975
End
Begin VB.Label Label3
Caption = "Station"
BeginProperty Font
Name = "MS Sans Serif"
Size = 24
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1440
TabIndex = 2
Top = 1560
Width = 1575
End
Begin VB.Label Label2
Caption = "New's"
BeginProperty Font
Name = "MS Sans Serif"
Size = 24
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1560
TabIndex = 1
Top = 960
Width = 1455
End
Begin VB.Label Label1
Caption = "Age of Production"
BeginProperty Font
Name = "MS Sans Serif"
Size = 24
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 360
TabIndex = 0
Top = 360
Width = 3855
End
Begin VB.Line Line4
BorderWidth = 5
X1 = 120
X2 = 4560
Y1 = 120
Y2 = 120
End
Begin VB.Line Line3
BorderWidth = 5
X1 = 4560
X2 = 4560
Y1 = 120
Y2 = 3000
End
Begin VB.Line Line2
BorderWidth = 5
X1 = 120
X2 = 4560
Y1 = 3000
Y2 = 3000
End
Begin VB.Line Line1
BorderColor = &H00000000&
BorderWidth = 5
X1 = 120
X2 = 120
Y1 = 120
Y2 = 3000
End
End
Attribute VB_Name = "frmsplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Me.Show
StayOnTop Me
Label4.Caption = ""
Label4.Caption = "Written and Compiled By:-_-NeCrO-_-"
Pause 2
Me.Show
Label4.Caption = "Powered By: Visual Basic 6.0"
Me.Show
Pause 3
Load frmnews
frmsplash.Enabled = True
Pause 0.5
Unload frmsplash
End Sub
Sub Pause(interval)
Current = Timer
Do While Timer - Current < Val(interval)
DoEvents
Loop
End Sub
Sub StayOnTop(frm As Form)
On Error GoTo don
Dim success%
success% = SetWindowPos(frm.hwnd, HWND_TOPMOST, 0, 0, 0, 0, Flags)
don:
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -