“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
答案 0 :(得分:0)
最后我开始工作了。使用download_DownloadFileCompleted部分开始另一次下载或执行下一步操作。