what do u add to download files, like if i press a button how can i make it downlaod files :)
Printable View
what do u add to download files, like if i press a button how can i make it downlaod files :)
Wrong.
Read the section rules!
Do you have ANY knowledge of 'Visual C#'? If so, try it yourself, GOOGLE!
Else, read tutorials from GOOGLE =)
In this section you dont ask for scripts, you get help with making them! You start, if you get stuck, then we help.
ive got knowlegde of visual C#
In this section you ask for nothing and usually get nothing because most RaGEZONER's are not coders at all. Of course some have the "knowledge", but can't download a file using program...
Look here, bounty-hunter http://www.codeproject.com/KB/IP/cooldownloader.aspx
using System.Net.WebClient;
WebClient Client = new WebClient ();
Client.DownloadFile("http://www.myserver.com/file.zip", @"c:\file.zip");
i belive that should work if your downloading from http servers, else, if you wish to download via raw tcp, its a bit more complicated.
Thanks man =D