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

📄 help.frm

📁 两个VB播放器 两个VB播放器 两个VB播放器 两个VB播放器
💻 FRM
字号:
VERSION 5.00
Object = "{3B7C8863-D78F-101B-B9B5-04021C009402}#1.2#0"; "RichTx32.ocx"
Begin VB.Form Dialog1 
   BackColor       =   &H8000000B&
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "Super Player 9.0 帮助"
   ClientHeight    =   7410
   ClientLeft      =   5925
   ClientTop       =   3345
   ClientWidth     =   6810
   BeginProperty Font 
      Name            =   "宋体"
      Size            =   10.5
      Charset         =   134
      Weight          =   400
      Underline       =   0   'False
      Italic          =   0   'False
      Strikethrough   =   0   'False
   EndProperty
   Icon            =   "Help.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   7410
   ScaleWidth      =   6810
   ShowInTaskbar   =   0   'False
   Begin RichTextLib.RichTextBox RichTextBox1 
      Height          =   6855
      Left            =   0
      TabIndex        =   2
      Top             =   0
      Width           =   6735
      _ExtentX        =   11880
      _ExtentY        =   12091
      _Version        =   393217
      BackColor       =   12648384
      ReadOnly        =   -1  'True
      ScrollBars      =   3
      MousePointer    =   1
      TextRTF         =   $"Help.frx":030A
   End
   Begin VB.CommandButton CancelButton 
      Caption         =   "取消(&C)"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   9
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   4080
      TabIndex        =   1
      Top             =   6960
      Width           =   1215
   End
   Begin VB.CommandButton OKButton 
      Caption         =   "确定(&O)"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   9
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   5520
      TabIndex        =   0
      Top             =   6960
      Width           =   1215
   End
   Begin VB.Image Image1 
      Height          =   7455
      Left            =   0
      Picture         =   "Help.frx":03A7
      Stretch         =   -1  'True
      Top             =   0
      Width           =   6855
   End
End
Attribute VB_Name = "Dialog1"
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 & "\HelpFile.rtf"
    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 + -