helpwindow.frm

来自「ADuC7026_I2C_downloader是ADuC7026 ARM 单片机」· FRM 代码 · 共 48 行

FRM
48
字号
VERSION 5.00
Begin VB.Form HelpWindow 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "使用帮助"
   ClientHeight    =   9570
   ClientLeft      =   3330
   ClientTop       =   1800
   ClientWidth     =   8430
   Icon            =   "HelpWindow.frx":0000
   LinkTopic       =   "Form4"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   9570
   ScaleWidth      =   8430
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.PictureBox Picture1 
      Height          =   8775
      Left            =   0
      Picture         =   "HelpWindow.frx":030A
      ScaleHeight     =   8715
      ScaleWidth      =   8355
      TabIndex        =   0
      Top             =   0
      Width           =   8415
   End
   Begin VB.Label Label1 
      Caption         =   $"HelpWindow.frx":BE6C
      Height          =   735
      Left            =   120
      TabIndex        =   1
      Top             =   8880
      Width           =   8055
   End
End
Attribute VB_Name = "HelpWindow"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Declare Function SetWindowPos Lib "user32" (ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal X As Long, ByVal Y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long
Private Sub Form_Load()
SetWindowPos Me.hwnd, -1, 0, 0, 0, 0, &H1 Or &H2
End Sub

⌨️ 快捷键说明

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