Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to transfer files ?

Status
Not open for further replies.

cj92713696

Programmer
Nov 23, 2000
105
US
I am working on a project that will be distributed to multiple branch offices in VB version 6. After information is entered, I want each client to upload its data to a central repository. I intend to do this by sending a *.txt file attachment to a FTP server running Windows 2000. On the Windows 2000 server, there will be a app. running to analyze and save the sent *.txt file to a central repository. Is there a better way to do this? Are there any good ActiveX controls to send files via FTP or other prebuilt server/client components?

Thanks,
CJ
 
You can use the Microsoft Winsock control. Winsock is a standard that is maintained by Microsoft. This standard is basically a set of routines that describe communications to and from the TCP/IP stack. These routines reside in a dynamic link library that runs under Windows. The winsock DLL is interfaced with TCP/IP and from there through the Internet. Through the Winsock control you can create both client and server applications that will interact with each other to exchange data. It is fairly easy to use and understand. This information is available at any good VB site.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top