⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frm试用指南.frm

📁 1. 观察计算机显示系统构成
💻 FRM
字号:
VERSION 5.00
Object = "{3B7C8863-D78F-101B-B9B5-04021C009402}#1.2#0"; "RICHTX32.OCX"
Begin VB.Form frm使用指南 
   Caption         =   "使用指南"
   ClientHeight    =   6420
   ClientLeft      =   60
   ClientTop       =   405
   ClientWidth     =   5655
   LinkTopic       =   "Form1"
   ScaleHeight     =   6420
   ScaleWidth      =   5655
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton OKButton 
      Caption         =   "确定(&O)"
      Height          =   375
      Left            =   840
      TabIndex        =   2
      Top             =   6000
      Width           =   1215
   End
   Begin VB.CommandButton CancelButton 
      Caption         =   "取消(&C)"
      Height          =   375
      Left            =   3360
      TabIndex        =   1
      Top             =   6000
      Width           =   1215
   End
   Begin RichTextLib.RichTextBox RichTextBox1 
      Height          =   5895
      Left            =   0
      TabIndex        =   0
      Top             =   0
      Width           =   5655
      _ExtentX        =   9975
      _ExtentY        =   10398
      _Version        =   393217
      BackColor       =   12632319
      ReadOnly        =   -1  'True
      ScrollBars      =   3
      MousePointer    =   1
      TextRTF         =   $"frm试用指南.frx":0000
   End
End
Attribute VB_Name = "frm使用指南"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CancelButton_Click()
 Unload Dialog1
End Sub

Private Sub Form_Load()
 On Error Resume Next
  RichTextBox1.LoadFile App.Path & "\使用指南.txt"
    If RichTextBox1.Text = "" Then
      RichTextBox1.Text = "帮助文件未找到,请检查帮助文件是否在当前目录下。"
    End If
  'On Error GoTo errHandl
  'errHandl:   MsgBox "请检查帮助文件是否在该目录下", vbExclamation, "MCIPlayerHelp": Exit Sub
End Sub

Private Sub OKButton_Click()
 Unload Dialog1
End Sub

Private Sub SSTab1_DblClick()
 
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -