Yahoo Clever wird am 4. Mai 2021 (Eastern Time, Zeitzone US-Ostküste) eingestellt. Ab dem 20. April 2021 (Eastern Time) ist die Website von Yahoo Clever nur noch im reinen Lesemodus verfügbar. Andere Yahoo Produkte oder Dienste oder Ihr Yahoo Account sind von diesen Änderungen nicht betroffen. Auf dieser Hilfeseite finden Sie weitere Informationen zur Einstellung von Yahoo Clever und dazu, wie Sie Ihre Daten herunterladen.

how do i make my internet control in vb.net download files? (mp3's)?

So i made a mini web-browser. 99% of it works, except for the downloading. When you press download on any link it says "save, open, cancel". if you press save or open it goes non responsive.

I'm trying to make a code for it that will be something along the lines of:

Private Sub WebBrowser1_FileDownload(ByVal sender As Object, ByVal e As System.EventArgs) Handles WebBrowser1.FileDownload

HOWTODOWNLOADCODEHERE

End sub

can someone fill in my allcap's blank?

also, how do i set the path of the download?

1 Antwort

Relevanz
  • vor 10 Jahren
    Beste Antwort

    Dim wc As New Net.WebClient

    Dim sfd As New SaveFileDialog

    sfd.Filter = "mp3 files (*.mp3)|*.mps"

    sfd.Title = "Save As..."

    sfd.ShowDialog()

    wc.DownloadFile("THE MP3 URL" , sfd.FileName)

    ---

    Presumably you would want to get the url from the link you click.

    ---

    EDIT: btw, sfd.filename is the path its saved to.

    Quelle(n): me
Haben Sie noch Fragen? Jetzt beantworten lassen.