📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BorderStyle = 3 'Fixed Dialog
Caption = "关于本程序"
ClientHeight = 3165
ClientLeft = 3690
ClientTop = 4605
ClientWidth = 5400
ControlBox = 0 'False
Icon = "frmAbout.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
PaletteMode = 1 'UseZOrder
ScaleHeight = 3165
ScaleWidth = 5400
ShowInTaskbar = 0 'False
Begin VB.CommandButton cmdReadme
Caption = "帮助"
Height = 375
Left = 4200
TabIndex = 4
Top = 2640
Width = 1095
End
Begin VB.CommandButton cmdOK
Caption = "确认"
Height = 375
Left = 4200
TabIndex = 0
Top = 2160
Width = 1095
End
Begin VB.Label Label4
Caption = "布朗"
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 = 255
Left = 1800
TabIndex = 7
Top = 960
Width = 495
End
Begin VB.Label Label6
Caption = "汉化者:"
Height = 255
Left = 720
TabIndex = 6
Top = 1440
Width = 975
End
Begin VB.Label Label5
Caption = "陈辉"
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 = 255
Left = 1800
TabIndex = 5
Top = 1440
Width = 495
End
Begin VB.Label Label3
Caption = "原作者:"
Height = 255
Left = 720
TabIndex = 3
Top = 960
Width = 975
End
Begin VB.Label Label2
Caption = "CoLIN 人工语言模拟"
Height = 255
Left = 720
TabIndex = 2
Top = 480
Width = 2655
End
Begin VB.Image Image1
Height = 480
Left = 120
Picture = "frmAbout.frx":000C
Top = 360
Width = 480
End
Begin VB.Label Label1
Caption = "此程序在未经修改和保持帮助文件不变的前提下可自由传播。未经原作者同意不得用于商业目的。"
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 120
TabIndex = 1
Top = 2280
Width = 3975
End
Begin VB.Line Line2
BorderColor = &H00FFFFFF&
X1 = 120
X2 = 5280
Y1 = 2040
Y2 = 2040
End
Begin VB.Line Line1
BorderColor = &H00808080&
BorderWidth = 2
X1 = 5280
X2 = 120
Y1 = 2040
Y2 = 2040
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
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 Const SW_SHOWNORMAL = 1
Private Sub cmdOK_Click()
Unload Me
End Sub
Private Sub cmdReadme_Click()
cinWeb App.Path & "\readme.txt"
End Sub
Public Sub cinWeb(htmlfile, Optional dr)
If IsMissing(dr) Then
dr = "C:\"
End If
Dim iret As Long
iret = ShellExecute(frmAbout.hwnd, _
vbNullString, _
htmlfile, _
vbNullString, _
dr, _
SW_SHOWNORMAL)
End Sub
Private Sub Label4_Click()
cinWeb "http://www.barc0de.demon.co.uk/"
End Sub
Private Sub Label5_Click()
cinWeb "http://go2debug.yeah.net"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -