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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FTP control for FVP 6.0 1

Status
Not open for further replies.

jworley

Programmer
Jun 19, 2000
36
GB
Hi,

Does anyone know of a good FTP control that I could plug in to a VFP application to perform background transfers of a simple text file to a Unix box ??

Any help/addresses would be much appreciated.

Jim Worley
jim@aits-uk.net
15 years practical IT experience from sales to support to development plus B.Sc. (Hons) Computer Studies, fluent German speaker, willing to have a go at anything and don't suffer fools gladly !
 
Jim,
The FTP/X control from They are VFP "friendly" by including VFP specific examples (not just VB code). I've also received responsive support when I needed it.

Rick
 
See: thread184-53545

FWIW, I use the 2nd method I recommend in the above mentioned thread. I programmatically FTP to/from a Unix box on a daily basis, and it works sweet. Jon Hawkins

The World Is Headed For Mutiny,
When All We Want Is Unity. - Creed
 
Jon,

The class sounds great & I have followed your advice and located it. However, I can't download it as there is some problem at their end. Any chance of emailing it to me as an attachment ?

TIA

Jim

Jim Worley
jim@aits-uk.net
15 years practical IT experience from sales to support to development plus B.Sc. (Hons) Computer Studies, fluent German speaker, willing to have a go at anything and don't suffer fools gladly !
 
Hi my friend
you may want to take a look at the class wwIPStuff.vcx from It comes with very good documentation and FoxPro sample application, it is more than simple to use, for example this is all you need to get file from FTP server

SET CLASSLIBRARY TO GETFILE() &&// Or set the path what ever you see fit
Oftp=createobject("wwIPStuff.wwftp")
lcServer=ftp.SomeDomain.com
Oftp.ftpConnect(lcServer,"","") &&// The first arg is the user name, the secont is the password
Oftp.ftpGetFileEx('/walid/testauto.doc','d:\Oftp.ftpClose()

Hope this will help
Walid Magd
Engwam@Hotmail.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top