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

📄 form1.frm

📁 枚举所有句柄 可以获取当前所有窗体的 柄局
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "Form1"
   ClientHeight    =   7935
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   10185
   LinkTopic       =   "Form1"
   ScaleHeight     =   7935
   ScaleWidth      =   10185
   StartUpPosition =   3  '窗口缺省
   Begin VB.ListBox List1 
      Height          =   6720
      Left            =   0
      TabIndex        =   14
      Top             =   0
      Width           =   10095
   End
   Begin VB.CommandButton Command1 
      Caption         =   "Command1"
      Height          =   735
      Left            =   3360
      TabIndex        =   13
      Top             =   6960
      Width           =   1575
   End
   Begin VB.Label chkKEY 
      AutoSize        =   -1  'True
      Caption         =   "Label1"
      Height          =   180
      Index           =   12
      Left            =   240
      TabIndex        =   12
      Top             =   3000
      Width           =   540
   End
   Begin VB.Label chkKEY 
      AutoSize        =   -1  'True
      Caption         =   "Label1"
      Height          =   180
      Index           =   11
      Left            =   240
      TabIndex        =   11
      Top             =   2760
      Width           =   540
   End
   Begin VB.Label chkKEY 
      AutoSize        =   -1  'True
      Caption         =   "Label1"
      Height          =   180
      Index           =   10
      Left            =   240
      TabIndex        =   10
      Top             =   2520
      Width           =   540
   End
   Begin VB.Label chkKEY 
      AutoSize        =   -1  'True
      Caption         =   "Label1"
      Height          =   180
      Index           =   9
      Left            =   240
      TabIndex        =   9
      Top             =   2280
      Width           =   540
   End
   Begin VB.Label chkKEY 
      AutoSize        =   -1  'True
      Caption         =   "Label1"
      Height          =   180
      Index           =   8
      Left            =   240
      TabIndex        =   8
      Top             =   2040
      Width           =   540
   End
   Begin VB.Label chkKEY 
      AutoSize        =   -1  'True
      Caption         =   "Label1"
      Height          =   180
      Index           =   7
      Left            =   240
      TabIndex        =   7
      Top             =   1800
      Width           =   540
   End
   Begin VB.Label chkKEY 
      AutoSize        =   -1  'True
      Caption         =   "Label1"
      Height          =   180
      Index           =   6
      Left            =   240
      TabIndex        =   6
      Top             =   1560
      Width           =   540
   End
   Begin VB.Label chkKEY 
      AutoSize        =   -1  'True
      Caption         =   "Label1"
      Height          =   180
      Index           =   5
      Left            =   240
      TabIndex        =   5
      Top             =   1320
      Width           =   540
   End
   Begin VB.Label chkKEY 
      AutoSize        =   -1  'True
      Caption         =   "Label1"
      Height          =   180
      Index           =   4
      Left            =   240
      TabIndex        =   4
      Top             =   1080
      Width           =   540
   End
   Begin VB.Label chkKEY 
      AutoSize        =   -1  'True
      Caption         =   "Label1"
      Height          =   180
      Index           =   3
      Left            =   240
      TabIndex        =   3
      Top             =   840
      Width           =   540
   End
   Begin VB.Label chkKEY 
      AutoSize        =   -1  'True
      Caption         =   "Label1"
      Height          =   180
      Index           =   2
      Left            =   240
      TabIndex        =   2
      Top             =   600
      Width           =   540
   End
   Begin VB.Label chkKEY 
      AutoSize        =   -1  'True
      Caption         =   "Label1"
      Height          =   180
      Index           =   1
      Left            =   240
      TabIndex        =   1
      Top             =   360
      Width           =   540
   End
   Begin VB.Label chkKEY 
      AutoSize        =   -1  'True
      Caption         =   "Label1"
      Height          =   180
      Index           =   0
      Left            =   240
      TabIndex        =   0
      Top             =   120
      Width           =   540
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'**************************************************
'窗体代码:Form1.frm
'**************************************************
Option Explicit

Private Sub Command1_Click()
Dim ret As Long

ret = EnumWindows(AddressOf EnumWindowsProc, 0)

End Sub

⌨️ 快捷键说明

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