This documentation is archived and is not being maintained.

InPlaceHostingManager.DownloadApplicationCompleted Event

Occurs when the application has finished downloading to the local computer.

Namespace:  System.Deployment.Application
Assembly:  System.Deployment (in System.Deployment.dll)

'Declaration
Public Event DownloadApplicationCompleted As EventHandler(Of DownloadApplicationCompletedEventArgs)
'Usage
Dim instance As InPlaceHostingManager 
Dim handler As EventHandler(Of DownloadApplicationCompletedEventArgs)

AddHandler instance.DownloadApplicationCompleted, handler

If you are installing a Windows Forms-based application, you will need to instruct users to launch the application themselves; you cannot start Windows Forms-based applications programmatically by using the Execute method.

The following code example demonstrates a handler for the DownloadApplicationCompleted event.

Private Sub iphm_DownloadApplicationCompleted(ByVal sender As Object, ByVal e As DownloadApplicationCompletedEventArgs) Handles iphm.DownloadApplicationCompleted
    ' Check for an error. 
    If (e.Error IsNot Nothing) Then 
        ' Cancel download and install.
        MessageBox.Show("Could not download and install application. Error: " & e.Error.Message)
        Return 
    End If 

    ' Inform the user that their application is ready for use. 
    MessageBox.Show("Application installed! You may now run it from the Start menu.")
End Sub

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Show: