![]() |
|
FTP Upload [vb.net] - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.li/Forum-Visual-Basic-NET-Framework) +--- Thread: FTP Upload [vb.net] (/Thread-FTP-Upload-vb-net) |
FTP Upload [vb.net] - Tr0ne - 05-21-2011 This is a little tutorial showing how to upload to you FTP Account : your need 4 TextBox and a button This in what you input in your TextBox1 : ftp://ftp.drivehq.com/Test.txt (Replace Drivehq with your server) TextBox2 ; your FTP username TextBox3 : Your FTP PAssword TextBox4 : Type anythng in that in will show in the Test.txt Quote: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Your Question are Welcome RE: FTP Upload - PartyPaint - 05-21-2011 which coding language is it? RE: FTP Upload - Tr0ne - 05-21-2011 Quote:which coding language is it?Its VB.net RE: FTP Upload [vb.net] - 1234hotmaster - 05-23-2011 or the easy way: Code: My.Computer.Network.UploadFile("C:\yourfile.txt", "ftp://ftp.drivehq.com/yourfile.txt", "Username", "Password", True, 10000)Edited: added user and pass support for FTP RE: FTP Upload [vb.net] - polas - 08-01-2011 This will upload just txt right ? RE: FTP Upload [vb.net] - Snipa - 08-01-2011 (05-23-2011, 09:16 AM)1234hotmaster Wrote: or the easy way: Are you a vb.net pro ? that's what i see, not only by this reply
RE: FTP Upload [vb.net] - 1234hotmaster - 08-01-2011 (08-01-2011, 08:17 AM)polas Wrote: This will upload just txt right ?no you can upload any type ![]() (08-01-2011, 08:38 AM)foudz32 Wrote:i don't think im a VB.NET pro i just know what it stands for(05-23-2011, 09:16 AM)1234hotmaster Wrote: or the easy way: ( Visual Basic . NET )RE: FTP Upload [vb.net] - PartyPaint - 08-01-2011 Nice work mate, needed that.
RE: FTP Upload [vb.net] - JuiceKing - 08-01-2011 Nice tutorial.. Thank you!
|