Skip to content

Latest commit

 

History

History
65 lines (47 loc) · 4.96 KB

File metadata and controls

65 lines (47 loc) · 4.96 KB
title How to: Call an Event Handler in Visual Basic
ms.custom
ms.date 07/20/2015
ms.prod .net
ms.reviewer
ms.suite
ms.technology
devlang-visual-basic
ms.topic article
helpviewer_keywords
Visual Basic code, procedures
event handlers [Visual Basic], calling
event handlers
procedures [Visual Basic], event handlers
procedures [Visual Basic], calling
ms.assetid 72e18ef8-144e-40df-a1f4-066a57271e28
caps.latest.revision 19
author dotnet-bot
ms.author dotnetcontent

How to: Call an Event Handler in Visual Basic

An event is an action or occurrence — such as a mouse click or a credit limit exceeded — that is recognized by some program component, and for which you can write code to respond. An event handler is the code you write to respond to an event.

An event handler in [!INCLUDEvbprvb] is a Sub procedure. However, you do not normally call it the same way as other Sub procedures. Instead, you identify the procedure as a handler for the event. You can do this either with a Handles clause and a WithEvents variable, or with an AddHandler Statement. Using a Handles clause is the default way to declare an event handler in [!INCLUDEvbprvb]. This is the way the event handlers are written by the designers when you program in the integrated development environment (IDE). The AddHandler statement is suitable for raising events dynamically at run time.

When the event occurs, [!INCLUDEvbprvb] automatically calls the event handler procedure. Any code that has access to the event can cause it to occur by executing a RaiseEvent Statement.

You can associate more than one event handler with the same event. In some cases you can dissociate a handler from an event. For more information, see Events.

To call an event handler using Handles and WithEvents

  1. Make sure the event is declared with an Event Statement.

  2. Declare an object variable at module or class level, using the WithEvents keyword. The As clause for this variable must specify the class that raises the event.

  3. In the declaration of the event-handling Sub procedure, add a Handles clause that specifies the WithEvents variable and the event name.

  4. When the event occurs, [!INCLUDEvbprvb] automatically calls the Sub procedure. Your code can use a RaiseEvent statement to make the event occur.

    The following example defines an event and a WithEvents variable that refers to the class that raises the event. The event-handling Sub procedure uses a Handles clause to specify the class and event it handles.

    [!code-vbVbVbcnProcedures#4]

To call an event handler using AddHandler

  1. Make sure the event is declared with an Event statement.

  2. Execute an AddHandler Statement to dynamically connect the event-handling Sub procedure with the event.

  3. When the event occurs, [!INCLUDEvbprvb] automatically calls the Sub procedure. Your code can use a RaiseEvent statement to make the event occur.

    The following example defines a Sub procedure to handle the xref:System.Windows.Forms.Form.Closing event of a form. It then uses the AddHandler Statement to associate the catchClose procedure as an event handler for xref:System.Windows.Forms.Form.Closing.

    [!code-vbVbVbcnProcedures#5]

    You can dissociate an event handler from an event by executing the RemoveHandler Statement.

See Also

Procedures
Sub Procedures
Sub Statement
AddressOf Operator
How to: Create a Procedure
How to: Call a Procedure that Does Not Return a Value