等待Visual Basic中的DownloadFileAsync

时间:2016-01-15 13:30:21

标签: visual-studio-2010

在下载完成之前出现

“next”。我知道它是一个异步,所以将执行并释放控件。在运行下一个命令之前有没有办法等待下载。

If System.Environment.Is64BitOperatingSystem = True Then
            MsgBox("64 bit")
            myurl = my64biturl
            myfilename = "java-64.exe"
            download = New WebClient
            download.DownloadFileAsync(New Uri(myurl), "java.exe")
            MsgBox("next")

        Else
            MsgBox("32-bit")
        End If

1 个答案:

答案 0 :(得分:0)

最后我开始工作了。使用download_DownloadFileCompleted部分开始另一次下载或执行下一步操作。