📄 frmsplash.frm
字号:
VERSION 5.00
Begin VB.Form frmSplash
BorderStyle = 3 'Fixed Dialog
ClientHeight = 4605
ClientLeft = 45
ClientTop = 45
ClientWidth = 7365
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4605
ScaleWidth = 7365
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Visible = 0 'False
Begin VB.Frame fraMainFrame
BackColor = &H80000009&
BorderStyle = 0 'None
Height = 4590
Left = 0
TabIndex = 0
Top = 0
Width = 7380
Begin VB.PictureBox picLogo
AutoRedraw = -1 'True
AutoSize = -1 'True
BorderStyle = 0 'None
Height = 4170
Left = -360
Picture = "frmSplash.frx":0000
ScaleHeight = 4170
ScaleWidth = 4500
TabIndex = 1
Top = 240
Width = 4500
End
Begin VB.Label lblLicenseTo
Alignment = 1 'Right Justify
BackColor = &H80000009&
Caption = "LicenseTo: FreeWare"
Height = 255
Left = 3600
TabIndex = 6
Tag = "LicenseTo"
Top = 600
Width = 3615
End
Begin VB.Label lblProductName
AutoSize = -1 'True
BackColor = &H80000009&
Caption = "Casper HTML"
BeginProperty Font
Name = "Times New Roman"
Size = 24
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 540
Left = 4170
TabIndex = 5
Tag = "Product"
Top = 1500
Width = 3045
End
Begin VB.Label lblPlatform
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackColor = &H80000009&
Caption = "Win 95/98/2000"
BeginProperty Font
Name = "MS Sans Serif"
Size = 13.5
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
Left = 5280
TabIndex = 4
Tag = "Platform"
Top = 2160
Width = 1920
End
Begin VB.Label lblVersion
Alignment = 1 'Right Justify
AutoSize = -1 'True
BackColor = &H80000009&
Caption = "Version : 1.00"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 300
Left = 5520
TabIndex = 3
Tag = "Version"
Top = 2520
Width = 1680
End
Begin VB.Label lblCopyright
BackColor = &H80000009&
Caption = "Copyright (C) 2000 Casper Team"
Height = 255
Left = 4800
TabIndex = 2
Tag = "Copyright"
Top = 3660
Width = 2535
End
End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'########################################################################### '
'
' Casper HTML Editor,
' I have developed this just for fun and I of course used some
' of the codes out there. As far as I know you may use the code
' under GPL (General Public Licence), what you do with my code,
' the one I wrote is up to you. Funny think is you'll never know what
' is mine own code -:)
'
' Well anyway, I appreciate your time and if you have any suggestion on
' how to improve the editor, please contact me at : Vpekulas@Home.com
'
' Why Casper ? Casper Semiramis III was my dog (boxer).
'
' PS:
' I'll work on it some more, specialy on Syntax coloring (It's so damn slow!)
' and then on the snippets & Java library.
'
'########################################################################### '
Private Sub Form_Load()
' lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
' lblProductName.Caption = App.Title
End Sub
Private Sub fraMainFrame_DragDrop(Source As Control, X As Single, Y As Single)
Unload frmSplash
End Sub
Private Sub picLogo_Click()
Unload frmSplash
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -