0
嘿傢伙我嘗試加載從一個數組的字符串(在這種情況下,URL),然後下載文件,但我得到下面這個錯誤:從數組中獲取字符串?
Argument cannot be Nothing.
Parameter name: address
這裏是我的代碼:
Dim urld As String
urld = dls.GetValue(dlcount)
My.Computer.Network.DownloadFile(urld, "images/image-" + dlcount.ToString + ".png")
Form1.o.Text = Form1.o.Text + urld + vbNewLine
dls是數組。
我以爲我做的一切正確,但也許不是。
好吧,做了一些調試,那是這種情況,我將如何去檢索字符串在數組中的某個索引? –
@Duncan:推測只是用'urld = dls(dlcount)'。 – LukeH
仍然沒有返回任何內容:\ –