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

📄 frmhelp.frm

📁 一款漂亮的闹钟制作界面,希望能给你们带来帮助.
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmhelp 
   BorderStyle     =   0  'None
   Caption         =   "帮助"
   ClientHeight    =   7395
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   10275
   Icon            =   "frmhelp.frx":0000
   LinkTopic       =   "Form1"
   ScaleHeight     =   7395
   ScaleWidth      =   10275
   StartUpPosition =   2  '屏幕中心
   Begin Reminder.XPContainer XPContainer1 
      Height          =   7380
      Left            =   0
      TabIndex        =   0
      Top             =   0
      Width           =   10275
      _ExtentX        =   18124
      _ExtentY        =   13018
      Caption         =   "帮助"
      Begin VB.PictureBox Picture1 
         Appearance      =   0  'Flat
         AutoSize        =   -1  'True
         BackColor       =   &H00DCC1AD&
         BorderStyle     =   0  'None
         ForeColor       =   &H80000008&
         Height          =   240
         Left            =   9615
         Picture         =   "frmhelp.frx":038A
         ScaleHeight     =   240
         ScaleWidth      =   240
         TabIndex        =   3
         Top             =   60
         Width           =   240
      End
      Begin VB.PictureBox isButton1 
         Appearance      =   0  'Flat
         AutoSize        =   -1  'True
         BackColor       =   &H00DCC1AD&
         BorderStyle     =   0  'None
         ForeColor       =   &H80000008&
         Height          =   240
         Left            =   9885
         Picture         =   "frmhelp.frx":0714
         ScaleHeight     =   240
         ScaleWidth      =   240
         TabIndex        =   2
         Top             =   60
         Width           =   240
      End
      Begin VB.TextBox Text1 
         Appearance      =   0  'Flat
         BackColor       =   &H00FCF4EF&
         BorderStyle     =   0  'None
         Height          =   6915
         Left            =   105
         Locked          =   -1  'True
         MultiLine       =   -1  'True
         TabIndex        =   1
         Text            =   "frmhelp.frx":0A9E
         Top             =   405
         Width           =   10080
      End
   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()
On Error GoTo E
Dim Tmp, Txt
XPContainer1.hhhw = Me.hwnd
XPContainer1.Width = Me.Width
XPContainer1.Height = Me.Height

Open App.Path & "\help.txt" For Input As #1
Do While Not EOF(1)
    Line Input #1, Tmp
    Txt = Txt & vbCrLf & Tmp
    Loop
If Txt <> "" Then Text1.Text = Txt
Close #1

E:
If Error <> "" Then MsgBox Error
End Sub ' wssccc's qq  151884336

Private Sub isButton1_Click()
Unload Me

End Sub ' wssccc's qq  151884336

Private Sub Picture1_Click()
Me.WindowState = 1
End Sub ' wssccc's qq  151884336

⌨️ 快捷键说明

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