2025-04-27 07:49:33 -04:00

52 lines
1.4 KiB
Plaintext

VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3285
ClientLeft = 60
ClientTop = 345
ClientWidth = 10695
LinkTopic = "Form1"
ScaleHeight = 3285
ScaleWidth = 10695
StartUpPosition = 3 'Windows Default
Begin VB.Timer Timer
Interval = 10
Left = 720
Top = 2760
End
Begin VB.ListBox List
Height = 2010
ItemData = "execquery.frx":0000
Left = 240
List = "execquery.frx":0002
TabIndex = 0
Top = 600
Width = 10095
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim objEnum As ISEnumWbemObject
Private Sub Form_Load()
' The following sample registers to be informed whenever an instance
' of the class MyClass is created
Dim objServices As ISWbemServices
Dim objEvent As ISWbemObject
Set objServices = GetObject("cim:root/default")
Set objEnum = objServices.ExecNotificationQuery("select * from __instancecreationevent where targetinstance isa 'MyClass'")
End Sub
Private Sub Timer_Timer()
For Each objEvent In objEnum
List.AddItem "Got an event"
Exit Sub
Next
End Sub