WindowsFormsApplicationBase::NetworkAvailabilityChanged Event
Occurs when the network availability changes.
Assembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
An application raises the NetworkAvailabilityChanged event every time that the availability of the network changes. You can use the IsNetworkAvailable property of the e parameter to get the new state of the network connection. To get the current state of the network connection, use the IsAvailable property.
This event is raised on the application's main thread with the other user-interface events. This enables the event handler to access directly the application's UI. However, if the application is busy handling another user-interface event when this event is raised, this event cannot be processed until the other event handler finishes or calls the DoEvents method.
The NetworkAvailabilityChanged event provides the same functionality as this event but is available for all application types.
The code for the NetworkAvailabilityChanged event handler is stored in the ApplicationEvents.vb file, which is hidden by default.
To access the Code Editor window for application events |
|
Note |
|---|
Many network hubs will provide a network connection even if the hub is disconnected from a larger network. Consequently, for wired connections, this event indicates change in the connection between the computer and a hub. |
Note |
|---|
The NetworkAvailabilityChanged event is not raised by applications when they are run on Windows 95 and Windows 98, or when they are run by a non-administrator on Windows 2000. If your application might run on those operating systems, use the IsAvailable property to check for network availability. |
Project type | Available |
Windows Forms Application | Yes |
Class Library | No |
Console Application | No |
Windows Forms Control Library | No |
Web Control Library | No |
Windows Service | No |
Web Site | No |
This example calls the SetConnectionStatus method of the default Form1 class when the network availability changes.
You must enter the code in the Code Editor window for application events. To access this window, follow the instructions from this topic's Remarks section.
The project should have a form named Form1. It should have a method named SetConnectionStatus that takes a Boolean parameter.
Private Sub MyApplication_NetworkAvailabilityChanged( ByVal sender As Object, ByVal e As Microsoft.VisualBasic.Devices.NetworkAvailableEventArgs ) Handles Me.NetworkAvailabilityChanged My.Forms.Form1.SetConnectionStatus(e.IsNetworkAvailable) End Sub
Available since 2.0
