?? frmhelp.frm
字號:
VERSION 5.00
Object = "{3B7C8863-D78F-101B-B9B5-04021C009402}#1.2#0"; "RICHTX32.OCX"
Begin VB.Form FrmHelp
Caption = "使用說明"
ClientHeight = 5925
ClientLeft = 60
ClientTop = 345
ClientWidth = 9405
Icon = "FrmHelp.frx":0000
LinkTopic = "Form1"
ScaleHeight = 5925
ScaleWidth = 9405
StartUpPosition = 1 '所有者中心
Begin RichTextLib.RichTextBox RTB
Height = 5895
Left = 0
TabIndex = 0
Top = 0
Width = 9375
_ExtentX = 16536
_ExtentY = 10398
_Version = 393217
ReadOnly = -1 'True
ScrollBars = 2
TextRTF = $"FrmHelp.frx":000C
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋體"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
End
Attribute VB_Name = "FrmHelp"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Dim filehelp As String
filehelp = App.Path + "\help.rtf"
RTB.LoadFile (filehelp)
End Sub
Private Sub Form_Resize()
RTB.Left = 0
RTB.ToolTipText = 0
RTB.Width = FrmHelp.ScaleWidth
RTB.Height = FrmHelp.ScaleHeight
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -