jmcilhinney:
are you saying saying I should add the "try" "catch" in the downloadfilecomplete event?
Right now there I only have this:
Code:
 Private Sub Download_DownloadFileCompleted(ByVal sender As Object, ByVal e As System.ComponentModel.AsyncCompletedEventArgs) Handles Download.DownloadFileCompleted
        If ProgressBar1.Value = 100 Then
            MsgBox("Download Completed!", vbInformation, "Info")
            Label1.Text = "0%"
            Timer1.Stop()
        End If
    End Sub
How would I implement it? I am confuse.


Stanav:
how would i handle the application event NetworkAvailabilityChanged? I cannot find it anywhere