The VBE exposes events a little differently than most Visual Basic
objects. The VBE object contains an Events collection that holds event
handlers for VBProjects, VBComponents, VBControls and References.
These are VBProjectsEvents, VBComponentEvents, VBControlsEvents and
ReferencesEvents, respectively. To expose the events of a specific VBE
object, you create a variable based on the object's event counterpart
and use the WithEvents keyword. Under these circumstances, Visual Basic
then allows you to select the variable's events in the Code window. For
instance, after setting a reference to the Visual Basic 6.0 Extensibility
Library, to expose the VBProjectEvents' events, you declarePublic WithEvents mobjProjEvents As VBIDE.VBProjectsEvents
Then, to create the appropriate variable, you'd use
Public mobjVB As VBIDE.VBE
Set mobjVB = Application
Set mobjProjEvents = mobjVB.Events.VBProjectsEvents
Once you have the variable in place, you can respond to its events. For
instance, suppose you want respond with code every time the user
activated an item, you'd use the following event:Private Sub mobjProjEvents_ItemActivated(ByVal _
VBProject As VBIDE.VBProject)
MsgBox "Triggered."
End Sub
Get to know the VBE's event objects
By ElementK Journals, published on 14 Jul 2001
| Filed in
You might also like...
VB 6 forum discussion
-
CorelDRAW VBA: cdrTraceLineDrawing FAILS, producing single linear path instead of Centerline trace?
by dancemanj (0 replies)
-
client/server application using activex
by beautifulheart (0 replies)
-
System Error &H8007007E. The specifed module could not be found.
by swiftsafe (5 replies)
-
Invitation to take part in an academic research study
by researchlab (0 replies)
-
Send SMS with SMPP
by mmahmoud (0 replies)
VB 6 podcasts
-
Stack Overflow Podcast: Podcast #45 – Keeping it Sharp
Published 7 years ago, running time 0h54m
Our guest this week is Eric Lippert – language architect extraordinaire and famous for all his work at Microsoft in developing their languages Eric joined Microsoft right out of college and was originally working on VB It’s time for everyone’s favorite game: Name the Worst Feature of that Microso.
Comments