Dangerousboss
New member
- Joined
- Jun 10, 2010
- Messages
- 2
- Programming Experience
- 1-3
I making program for downloading from YouTube to .mp4... User has to insert URL of video and my program download web source... find title,videoid, and T and make variable with download string... Then i use WebClient.DownloadFileAsync to download and i can download if I use :
I download like that... but i want one textbox with path where downloads being saved with auto file name (youtube video title)... when i try that it won't start download...
VB.NET:
Dim A as new WebClient
A.DownloadFileAsync(downloadaddress,"C:\test.mp4")
I download like that... but i want one textbox with path where downloads being saved with auto file name (youtube video title)... when i try that it won't start download...