📄 helpscreen.frm
字号:
VERSION 5.00
Begin VB.Form helpscreen
BorderStyle = 1 'Fixed Single
Caption = "Whisper V5"
ClientHeight = 2880
ClientLeft = 45
ClientTop = 330
ClientWidth = 5625
Icon = "helpscreen.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 2880
ScaleWidth = 5625
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton Command1
Caption = "&Done"
Default = -1 'True
Height = 285
Left = 4680
TabIndex = 2
Top = 2280
Width = 855
End
Begin VB.Frame Frame1
Caption = "Whisper Commands:"
Height = 2055
Left = 120
TabIndex = 0
Top = 120
Width = 5415
Begin VB.TextBox Text1
Height = 1695
Left = 120
Locked = -1 'True
MultiLine = -1 'True
TabIndex = 1
TabStop = 0 'False
Text = "helpscreen.frx":0442
Top = 240
Width = 5175
End
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "Send questions and comments to:"
Height = 195
Left = 240
TabIndex = 6
Top = 2520
Width = 2400
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "For further information:"
Height = 195
Left = 240
TabIndex = 5
Top = 2280
Width = 1575
End
Begin VB.Label lblsmtp
AutoSize = -1 'True
Caption = "virulent@bigwig.net"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 195
Left = 3000
TabIndex = 4
Top = 2520
Width = 1395
End
Begin VB.Label lblWww
AutoSize = -1 'True
Caption = "http://web.ukonline.co.uk/virutech"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 195
Left = 1920
TabIndex = 3
Top = 2280
Width = 2505
End
End
Attribute VB_Name = "helpscreen"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Const TEXT_WWW As String = "http://web.ukonline.co.uk/virutech"
Private Const TEXT_SMTP As String = "virulent@bigwig.net"
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _
(ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, _
ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Sub Command1_Click()
Me.Visible = False
End Sub
Private Sub lblsmtp_Click()
ShellExecute 0, "Open", "mailto:" & TEXT_SMTP, "", "", vbNormalFocus
End Sub
Private Sub lblsmtp_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
lblsmtp.ForeColor = &HFF&
End Sub
Private Sub lblsmtp_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
lblsmtp.ForeColor = &HFF0000
End Sub
Private Sub lblWww_Click()
ShellExecute 0, "Open", TEXT_WWW, "", "", vbNormalFocus
End Sub
Private Sub lblWww_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
lblWww.ForeColor = &HFF&
End Sub
Private Sub lblWww_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
lblWww.ForeColor = &HFF0000
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -