📄 frmhelp.frm
字号:
VERSION 5.00
Begin VB.Form frmHelp
Caption = "Program Help"
ClientHeight = 2955
ClientLeft = 60
ClientTop = 345
ClientWidth = 4845
LinkTopic = "Form2"
MaxButton = 0 'False
ScaleHeight = 2955
ScaleWidth = 4845
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton Command1
Caption = "Close"
Height = 255
Left = 3360
TabIndex = 1
Top = 2640
Width = 1215
End
Begin VB.TextBox Text1
Height = 2415
Left = 120
Locked = -1 'True
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 0
Text = "frmHelp.frx":0000
Top = 120
Width = 4575
End
End
Attribute VB_Name = "frmHelp"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Form_Load()
Text1.BackColor = Me.BackColor
End Sub
Private Sub Text1_GotFocus()
Text1.SelStart = Len(Text1.Text)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -