09-09-15, 05:51 AM
تفضل اخى الكريم كود ايقاف التحميل المؤقت
Private Sub btnPause_Click(sender As Object, e As EventArgs) Handles btnPause.Click
If _downloader.Status = FileDownloadStatus.Paused Then
_downloader.BeginResume()
ElseIf _downloader.Status = FileDownloadStatus.Downloading Then
_downloader.Pause()
End If
End Sub
Private Sub btnPause_Click(sender As Object, e As EventArgs) Handles btnPause.Click
If _downloader.Status = FileDownloadStatus.Paused Then
_downloader.BeginResume()
ElseIf _downloader.Status = FileDownloadStatus.Downloading Then
_downloader.Pause()
End If
End Sub
